RetroArch
compat_ctype.h
Go to the documentation of this file.
1 /* RetroArch - A frontend for libretro.
2  * Copyright (C) 2010-2018 - Francisco Javier Trujillo Mata - fjtrujy
3  *
4  * RetroArch is free software: you can redistribute it and/or modify it under the terms
5  * of the GNU General Public License as published by the Free Software Found-
6  * ation, either version 3 of the License, or (at your option) any later version.
7  *
8  * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
9  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
10  * PURPOSE. See the GNU General Public License for more details.
11  * * You should have received a copy of the GNU General Public License along with RetroArch.
12  * If not, see <http://www.gnu.org/licenses/>.
13  */
14 
15 #ifndef COMPAT_CTYPE_H
16 #define COMPAT_CTYPE_H
17 
18 char *strtok_r(char *str, const char *delim, char **saveptr);
19 
20 unsigned long long strtoull(const char * __restrict nptr, char ** __restrict endptr, int base);
21 
22 int link(const char *oldpath, const char *newpath);
23 int unlink(const char *path);
24 
25 #endif
GLsizei const GLchar ** path
Definition: glext.h:7901
int unlink(const char *path)
Definition: compat_ctype.c:443
int link(const char *oldpath, const char *newpath)
Definition: compat_ctype.c:438
char * strtok_r(char *str, const char *delim, char **saveptr)
Definition: compat_ctype.c:336
unsigned long long strtoull(const char *__restrict nptr, char **__restrict endptr, int base)
Definition: compat_ctype.c:366
const char *const str
Definition: portlistingparse.c:18