Skip to content
Snippets Groups Projects
Commit 1af4eb7e authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Merge branch 'ctype' into 'master'

ctype: Implement _tolower, _toupper

See merge request redox-os/relibc!191
parents 73c368dd d38a1d0d
No related branches found
No related tags found
1 merge request!191ctype: Implement _tolower, _toupper
Pipeline #2996 passed with warnings
#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"
language = "C"
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