File: string.h

package info (click to toggle)
mknbi 1.4.3-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 796 kB
  • ctags: 1,383
  • sloc: ansic: 3,496; asm: 2,367; perl: 1,364; makefile: 246; sh: 74; pascal: 37
file content (11 lines) | stat: -rw-r--r-- 299 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#include <stddef.h>
#include "linux-asm-string.h"

/*
 *	Prototypes for other non-inline string functions
 */

char *strrchr(const char *s, int c);
char *strcpy(char *dest, const char *src);
char *strcat(char *dest, const char *src);
char *strncat(char *dest, const char *src, unsigned int maxlen);