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

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

Reorganise code to make maintenance easier

File size: 397 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
13char *kstrdup(const char *s, unsigned int gfp_flags);
14
15#endif
16
Note: See TracBrowser for help on using the repository browser.