toupper 和 tolower 可以使用 C 语言中的哪个头文件? [已关闭]

问题描述 投票:0回答:1

我需要使用

toupper
tolower
但我不知道哪个标准库头包含这些函数。

c character
1个回答
2
投票

在几乎所有环境(包括任何 POSIX 环境)中,这两个函数均由标准 C 库提供 - 即无需链接特定库。相关功能的手册页将告诉您该做什么

#include
;在 POSIX 上,根据手册页,答案是
ctype.h

TOUPPER(3)               BSD Library Functions Manual               TOUPPER(3)

NAME
     toupper, toupper_l -- lower case to upper case letter conversion

LIBRARY
     Standard C Library (libc, -lc)

SYNOPSIS
     #include <ctype.h>

     int
     toupper(int c);
© www.soinside.com 2019 - 2024. All rights reserved.