aboutsummaryrefslogtreecommitdiff
path: root/libpsn00b/include/ctype.h
diff options
context:
space:
mode:
authorspicyjpeg <thatspicyjpeg@gmail.com>2023-04-04 15:39:21 +0200
committerspicyjpeg <thatspicyjpeg@gmail.com>2023-04-04 15:39:21 +0200
commit651415f5b549b363dec971e2ef589cce098ee1f2 (patch)
tree476d772f3655ca4942dcc417917043f818ec3607 /libpsn00b/include/ctype.h
parent870f4dca9d7b5e86544216d0e36863d17aefef62 (diff)
downloadpsn00bsdk-651415f5b549b363dec971e2ef589cce098ee1f2.tar.gz
Fix non-standard string.h functions, remove argv parser
Diffstat (limited to 'libpsn00b/include/ctype.h')
-rw-r--r--libpsn00b/include/ctype.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/libpsn00b/include/ctype.h b/libpsn00b/include/ctype.h
index 24ee9d9..ad78397 100644
--- a/libpsn00b/include/ctype.h
+++ b/libpsn00b/include/ctype.h
@@ -1,6 +1,6 @@
/*
* PSn00bSDK standard library
- * (C) 2019-2022 PSXSDK authors, Lameguy64, spicyjpeg - MPL licensed
+ * (C) 2019-2023 PSXSDK authors, Lameguy64, spicyjpeg - MPL licensed
*/
#ifndef __CTYPE_H
@@ -10,8 +10,15 @@
extern "C" {
#endif
-int tolower(int chr);
-int toupper(int chr);
+int isprint(int ch);
+int isgraph(int ch);
+int isspace(int ch);
+int isblank(int ch);
+int isalpha(int ch);
+int isdigit(int ch);
+
+int tolower(int ch);
+int toupper(int ch);
#ifdef __cplusplus
}