annotate C/port/strsep.h @ 334:0b576ee64d45

* Create brand new hierarchy * Rename DynLib to Dynlib * Remove some warnings
author David Demelier <markand@malikania.fr>
date Sun, 08 Mar 2015 14:26:33 +0100
parents port/strsep.h@0635f98a2227
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
121
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
1 /*
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
2 * strsep.h -- separate a string by delimiters
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
3 *
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
4 * Copyright (c) 2011, 2012, David Demelier <markand@malikania.fr>
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
5 *
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
6 * Permission to use, copy, modify, and/or distribute this software for any
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
7 * purpose with or without fee is hereby granted, provided that the above
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
8 * copyright notice and this permission notice appear in all copies.
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
9 *
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
17 */
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
18
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
19 #ifdef __cplusplus
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
20 extern "C" {
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
21 #endif
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
22
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
23 char *strsep(char **, const char *);
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
24
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
25 #ifdef __cplusplus
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
26 }
0635f98a2227 Forgot to add port .h files
David Demelier <markand@malikania.fr>
parents:
diff changeset
27 #endif