Blame usbredirparser/strtok_r.h

Packit 9795e1
/* Reentrant string tokenizer.  Generic version.
Packit 9795e1
   Copyright (C) 1991,1996-1999,2001,2004 Free Software Foundation, Inc.
Packit 9795e1
   This file is part of the GNU C Library.
Packit 9795e1
Packit 9795e1
   The GNU C Library is free software; you can redistribute it and/or
Packit 9795e1
   modify it under the terms of the GNU Lesser General Public
Packit 9795e1
   License as published by the Free Software Foundation; either
Packit 9795e1
   version 2.1 of the License, or (at your option) any later version.
Packit 9795e1
Packit 9795e1
   The GNU C Library is distributed in the hope that it will be useful,
Packit 9795e1
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 9795e1
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 9795e1
   Lesser General Public License for more details.
Packit 9795e1
Packit 9795e1
   You should have received a copy of the GNU Lesser General Public
Packit 9795e1
   License along with the GNU C Library; if not, write to the Free
Packit 9795e1
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
Packit 9795e1
   02111-1307 USA.  */
Packit 9795e1
Packit 9795e1
#ifndef _USBREDIRPARSER_STRTOK_H_
Packit 9795e1
#define _USBREDIRPARSER_STRTOK_H_
Packit 9795e1
Packit 9795e1
char *
Packit 9795e1
glibc_strtok_r(char *s, const char *delim, char **save_ptr);
Packit 9795e1
Packit 9795e1
#endif