X-Git-Url: https://git.gag.com/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fctype.h;h=adf5ce2b657ba09b2df5d5968892d9b544b88348;hb=ad9db5af1af0576b1ac057e35917c08ece7411ba;hp=a4ac53449bfd52e529860d95358dbe24ccf7d24e;hpb=60a688dbb5637862d9ae6b4d2bca77c0f257a2dc;p=fw%2Fpdclib diff --git a/includes/ctype.h b/includes/ctype.h index a4ac534..adf5ce2 100644 --- a/includes/ctype.h +++ b/includes/ctype.h @@ -83,11 +83,11 @@ int isxdigit( int c ); /* Converts an uppercase letter to a corresponding lowercase letter. Input that is not an uppercase letter remains unchanged. */ -int tolower( c ); +int tolower( int c ); /* Converts a lowercase letter to a corresponding uppercase letter. Input that is not a lowercase letter remains unchanged. */ -int toupper( c ); +int toupper( int c ); #endif