diff options
| author | spicyjpeg <thatspicyjpeg@gmail.com> | 2022-09-22 21:36:29 +0200 |
|---|---|---|
| committer | spicyjpeg <thatspicyjpeg@gmail.com> | 2022-09-22 21:36:29 +0200 |
| commit | 86f0064afb8200e60dd80827535cac30d0eab028 (patch) | |
| tree | c7ef61653b157b69fb0956709366996ddbc4ecfa /libpsn00b/include/strings.h | |
| parent | 5746b6ef9df16447d78e77d00ad21a4dba0fe169 (diff) | |
| download | psn00bsdk-86f0064afb8200e60dd80827535cac30d0eab028.tar.gz | |
Update version number, clean up old headers
Diffstat (limited to 'libpsn00b/include/strings.h')
| -rw-r--r-- | libpsn00b/include/strings.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/libpsn00b/include/strings.h b/libpsn00b/include/strings.h index e5e88d4..7223ab9 100644 --- a/libpsn00b/include/strings.h +++ b/libpsn00b/include/strings.h @@ -1,18 +1,19 @@ -/* - * strings.h - * - * PSXSDK +/* + * PSn00bSDK standard library + * (C) 2019-2022 PSXSDK authors, Lameguy64, spicyjpeg - MPL licensed */ -#ifndef _STRINGS_H -#define _STRINGS_H +#ifndef __STRINGS_H +#define __STRINGS_H #include <string.h> -#define bcopy(src,dst,len) memmove(dst,src,len) -#define bzero(ptr, len) memset(ptr, 0, len) -#define bcmp(b1,b2,len) memcmp(b1,b2,len) -#define index(s, c) strchr(s, c) -#define rindex(s, c) strrchr(s, c) +/* Compatibility macros (this header is useless) */ + +#define bcopy(src, dst, len) memmove(dst, src, len) +#define bzero(ptr, len) memset(ptr, 0, len) +#define bcmp(b1, b2, len) memcmp(b1, b2, len) +#define index(s, c) strchr(s, c) +#define rindex(s, c) strrchr(s, c) #endif |
