All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
strtok_r.h
Go to the documentation of this file.
1 // File: strtok_r.h
3 // Description: Header file for strtok_r.cpp
4 // source: https://github.com/heimdal/heimdal/blob/master/lib/roken/
5 // strtok_r.c
6 // Author: zdenop
7 // Created: Fri Aug 12 23:55:06 CET 2011
8 //
9 // (C) Copyright 2011, Google Inc.
10 // Licensed under the Apache License, Version 2.0 (the "License");
11 // you may not use this file except in compliance with the License.
12 // You may obtain a copy of the License at
13 // http://www.apache.org/licenses/LICENSE-2.0
14 // Unless required by applicable law or agreed to in writing, software
15 // distributed under the License is distributed on an "AS IS" BASIS,
16 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 // See the License for the specific language governing permissions and
18 // limitations under the License.
19 //
21 
22 #ifndef VS2010_PORT_STRTOK_R_H_
23 #define VS2010_PORT_STRTOK_R_H_
24 
25 char *strtok_r(char *s1, const char *s2, char **lasts);
26 
27 #endif // VS2010_PORT_STRTOK_R_H_
char * strtok_r(char *s1, const char *s2, char **lasts)
Definition: strtok_r.cpp:38