source: GPL/include/asm/string.h@ 18

Last change on this file since 18 was 18, checked in by vladest, 20 years ago

initial import

File size: 327 bytes
Line 
1#ifndef _LINUX_STRING_H
2#define _LINUX_STRING_H
3
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
12#endif
13
Note: See TracBrowser for help on using the repository browser.