Subversion Repositories shark

Rev

Rev 42 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42 pj 1
/* Project:     OSLib
2
 * Description: The OS Construction Kit
3
 * Date:                1.6.2000
4
 * Idea by:             Luca Abeni & Gerardo Lamastra
5
 *
6
 * OSLib is an SO project aimed at developing a common, easy-to-use
7
 * low-level infrastructure for developing OS kernels and Embedded
8
 * Applications; it partially derives from the HARTIK project but it
9
 * currently is independently developed.
10
 *
11
 * OSLib is distributed under GPL License, and some of its code has
12
 * been derived from the Linux kernel source; also some important
13
 * ideas come from studying the DJGPP go32 extender.
14
 *
15
 * We acknowledge the Linux Community, Free Software Foundation,
16
 * D.J. Delorie and all the other developers who believe in the
17
 * freedom of software and ideas.
18
 *
19
 * For legalese, check out the included GPL license.
20
 */
21
 
22
/*      String manipulation functions   */
23
 
24
#ifndef __LL_I386_STRING_H__
25
#define __LL_I386_STRING_H__
26
 
27
#include <ll/i386/mem.h>
28
 
29
#include <ll/i386/defs.h>
30
BEGIN_DEF
31
 
32
/* Various string manipulation functions */
33
 
34
/* File: String.C               */
35
 
36
char *strcpy(char *dst,const char *src);
37
char *strncpy(char *dst,const char *src,int n);
38
int strcmp(const char *s1,const char *s2);
39
int strncmp(const char *s1,const char *s2,int n);
40
int strlen(const char *s);
41
char *strscn(char *s,char *pattern);
42
char *strchr(char *s,int c);
43
char *strupr(char *s);
44
char *strlwr(char *s);
45
char *strcat(char *dst,char *src);
46
 
47
END_DEF
48
 
49
#endif
50