source: GPL/trunk/include/linux/string.h@ 441

Last change on this file since 441 was 441, checked in by Paul Smedley, 16 years ago

Move functions out of config.h into appropriate linux header

File size: 340 bytes
Line 
1#ifndef _LINUX_STRING_H
2#define _LINUX_STRING_H
3#if 0
4char *strstr1 (const char *string1, const char *string2);
5
6char *strncpy (char *string1, const char *string2, size_t count);
7
8int strcmp (const char *string1, const char *string2);
9
10int strncmp (const char *string1, const char *string2, size_t count);
11#endif
12
13#endif
14
Note: See TracBrowser for help on using the repository browser.