From 7be9178c0f9b0e698a305ecc5c0c41fcc596a4fc Mon Sep 17 00:00:00 2001 From: "John Wilbert M. Villamor" Date: Sun, 23 Jun 2019 07:42:16 +0800 Subject: LibPSn00b officially v0.10b, added psxsio library, better DrawSync() and VSync(), better reference manual. --- libpsn00b/include/string.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libpsn00b/include/string.h') diff --git a/libpsn00b/include/string.h b/libpsn00b/include/string.h index 95796d5..9cd1d64 100644 --- a/libpsn00b/include/string.h +++ b/libpsn00b/include/string.h @@ -9,6 +9,10 @@ #ifndef _STRING_H #define _STRING_H +#ifdef __cplusplus +extern "C" { +#endif + int strcmp(const char *dst , const char *src); int strncmp(const char *dst , const char *src , int len); char *strpbrk(const char *dst , const char *src); @@ -37,6 +41,9 @@ void *memcpy(void *dst , const void *src , int n); void *memset(void *dst , char c , int n); int memcmp(const void *b1 , const void *b2 , int n); +#ifdef __cplusplus +} +#endif #endif -- cgit v1.2.3