| 1 |
/** |
| 2 |
* This file has no copyright assigned and is placed in the Public Domain. |
| 3 |
* This file is part of the mingw-w64 runtime package. |
| 4 |
* No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| 5 |
*/ |
| 6 |
#define _ffree free |
| 7 |
#define _fmalloc malloc |
| 8 |
#define _fmemccpy memccpy |
| 9 |
#define _fmemchr memchr |
| 10 |
#define _fmemcmp memcmp |
| 11 |
#define _fmemcpy memcpy |
| 12 |
#define _fmemicmp _memicmp |
| 13 |
#define _fmemmove memmove |
| 14 |
#define _fmemset memset |
| 15 |
#define _frealloc realloc |
| 16 |
#define _fstrcat strcat |
| 17 |
#define _fstrchr strchr |
| 18 |
#define _fstrcmp strcmp |
| 19 |
#define _fstrcpy strcpy |
| 20 |
#define _fstrcspn strcspn |
| 21 |
#define _fstrdup _strdup |
| 22 |
#define _fstricmp _stricmp |
| 23 |
#define _fstrlen strlen |
| 24 |
#define _fstrlwr _strlwr |
| 25 |
#define _fstrncat strncat |
| 26 |
#define _fstrncmp strncmp |
| 27 |
#define _fstrncpy strncpy |
| 28 |
#define _fstrnicmp _strnicmp |
| 29 |
#define _fstrnset strnset |
| 30 |
#define _fstrpbrk strpbrk |
| 31 |
#define _fstrrchr strrchr |
| 32 |
#define _fstrrev strrev |
| 33 |
#define _fstrset strset |
| 34 |
#define _fstrspn strspn |
| 35 |
#define _fstrstr strstr |
| 36 |
#define _fstrtok strtok |
| 37 |
#define _fstrupr _strupr |