Merge branch 'ctype' into 'master'
ctype: Implement _tolower, _toupper See merge request redox-os/relibc!191
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
#ifndef _BITS_CTYPE_H
|
||||
#define _BITS_CTYPE_H
|
||||
|
||||
#define _tolower(c) tolower(c)
|
||||
#define _toupper(c) toupper(c)
|
||||
|
||||
#endif /* _BITS_CTYPE_H */
|
||||
@@ -1,4 +1,4 @@
|
||||
sys_includes = []
|
||||
sys_includes = ["bits/ctype.h"]
|
||||
include_guard = "_CTYPE_H"
|
||||
language = "C"
|
||||
style = "Tag"
|
||||
|
||||
Reference in New Issue
Block a user