Mercurial > mplayer.hg
annotate osdep/strsep.h @ 34234:4ec96d5d2e4c
build: drop releaseclean target
The target is supposed to remove files that are created during the XML build
process without removing the generated documentation. Unfortunately, it does
not work as expected and is not worth the extra complication.
author | diego |
---|---|
date | Mon, 07 Nov 2011 19:54:38 +0000 |
parents | 7f7591482564 |
children |
rev | line source |
---|---|
30313
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
1 /* |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
2 * strsep implementation for systems that do not have it in libc |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
3 * |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
4 * This file is part of MPlayer. |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
5 * |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
6 * MPlayer is free software; you can redistribute it and/or modify |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
7 * it under the terms of the GNU General Public License as published by |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
8 * the Free Software Foundation; either version 2 of the License, or |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
9 * (at your option) any later version. |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
10 * |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
11 * MPlayer is distributed in the hope that it will be useful, |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
14 * GNU General Public License for more details. |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
15 * |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
16 * You should have received a copy of the GNU General Public License along |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
17 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
19 */ |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
20 #ifndef MPLAYER_STRSEP_H |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
21 #define MPLAYER_STRSEP_H |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
22 |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
23 #include <string.h> |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
24 #include "config.h" |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
25 |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
26 #ifndef HAVE_STRSEP |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
27 char *strsep(char **stringp, const char *delim); |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
28 #endif |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
29 |
7f7591482564
Add a proper header for our strsep implementation so strsep will
reimar
parents:
diff
changeset
|
30 #endif /* MPLAYER_STRSEP_H */ |