Mercurial > mplayer.hg
annotate gui/util/string.h @ 36840:511047e8e0a2
Remove unnecessary casts.
author | ib |
---|---|
date | Tue, 25 Feb 2014 15:16:01 +0000 |
parents | 311b47301ea7 |
children | 3f3a415d605b |
rev | line source |
---|---|
33048 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
18 | |
19 #ifndef MPLAYER_GUI_STRING_H | |
20 #define MPLAYER_GUI_STRING_H | |
21 | |
34560
abcf26dcec6b
Add fgetstr() to read from files without end-of-line characters.
ib
parents:
34176
diff
changeset
|
22 #include <stdio.h> |
abcf26dcec6b
Add fgetstr() to read from files without end-of-line characters.
ib
parents:
34176
diff
changeset
|
23 |
33073 | 24 char *decomment(char *in); |
34560
abcf26dcec6b
Add fgetstr() to read from files without end-of-line characters.
ib
parents:
34176
diff
changeset
|
25 char *fgetstr(char *str, int size, FILE *file); |
33737 | 26 char *gstrchr(const char *str, int c); |
27 int gstrcmp(const char *a, const char *b); | |
28 char *gstrdup(const char *str); | |
34628 | 29 int gstrncmp(const char *a, const char *b, size_t n); |
33740
2c02269701bd
Remove macros guiSetFilename() and guiSetDF() from interface.h.
ib
parents:
33737
diff
changeset
|
30 void setddup(char **old, const char *dir, const char *name); |
2c02269701bd
Remove macros guiSetFilename() and guiSetDF() from interface.h.
ib
parents:
33737
diff
changeset
|
31 void setdup(char **old, const char *str); |
33052 | 32 char *strlower(char *in); |
33048 | 33 char *strswap(char *in, char from, char to); |
34176
d52b0ad317d5
Cosmetic: Rename TranslateFilename()'s parameter names.
ib
parents:
34175
diff
changeset
|
34 char *TranslateFilename(int how, char *fname, size_t maxlen); |
33048 | 35 char *trim(char *in); |
36 | |
37 #endif /* MPLAYER_GUI_STRING_H */ |