OSDN Git Service

* include/sched.h: Remove, overruled by newlib file.
[pf3gnuchains/sourceware.git] / winsup / cygwin / include / strings.h
1 /* strings.h
2
3    Copyright 2007 Red Hat, Inc.
4
5  This file is part of Cygwin.
6
7  This software is a copyrighted work licensed under the terms of the
8  Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
9  details. */
10
11 #ifndef _STRINGS_H_
12 #define _STRINGS_H_
13
14 /* newlib's string.h already declares these functions. */
15 #ifndef _STRING_H_
16
17 #include "_ansi.h"
18
19 #define __need_size_t
20 #include <stddef.h>
21
22 _BEGIN_STD_C
23
24 int   _EXFUN(bcmp,(const void *, const void *, size_t));
25 void  _EXFUN(bcopy,(const void *, void *, size_t));
26 void  _EXFUN(bzero,(void *, size_t));
27 int   _EXFUN(ffs,(int));
28 char *_EXFUN(index,(const char *, int));
29 char *_EXFUN(rindex,(const char *, int));
30 int   _EXFUN(strcasecmp,(const char *, const char *));
31 int   _EXFUN(strncasecmp,(const char *, const char *, size_t));
32
33 _END_STD_C
34
35 #endif /* _STRING_H_ */
36
37 #endif /* _STRINGS_H_ */