Skip to content
Snippets Groups Projects
Commit d38a1d0d authored by Nagy Tibor's avatar Nagy Tibor
Browse files

ctype: Implement _tolower, _toupper

parent 73c368dd
No related branches found
No related tags found
No related merge requests found
#ifndef _BITS_CTYPE_H
#define _BITS_CTYPE_H
#define _tolower(c) tolower(c)
#define _toupper(c) toupper(c)
#endif /* _BITS_CTYPE_H */
sys_includes = [] sys_includes = ["bits/ctype.h"]
include_guard = "_CTYPE_H" include_guard = "_CTYPE_H"
language = "C" language = "C"
style = "Tag" style = "Tag"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment