bindings-common-1.3.2: src/Bindings/C/Ctype.hsc
#include <bindings.macros.h>
#include <ctype.h>
-- | <http://www.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html>
module Bindings.C.Ctype where
#strict_import
#ccall isalnum , CInt -> IO CInt
#ccall isalpha , CInt -> IO CInt
#ccall isblank , CInt -> IO CInt
#ccall iscntrl , CInt -> IO CInt
#ccall isdigit , CInt -> IO CInt
#ccall isgraph , CInt -> IO CInt
#ccall islower , CInt -> IO CInt
#ccall isprint , CInt -> IO CInt
#ccall ispunct , CInt -> IO CInt
#ccall isspace , CInt -> IO CInt
#ccall isupper , CInt -> IO CInt
#ccall isxdigit , CInt -> IO CInt
#ccall tolower , CInt -> IO CInt
#ccall toupper , CInt -> IO CInt