我需要使用toupper
和tolower
,但我不知道哪个库包含此功能。
请帮助我!
答案 0 :(得分:3)
在几乎所有环境(包括任何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);