source: buchla-68k/include/strings.h@ 0580615

Last change on this file since 0580615 was 0580615, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Point of no return.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 ============================================================================
3 strings.h -- definitions for strnglib
4 Version 3 -- 1987-04-21 -- D.N. Lynx Crowe
5 ============================================================================
6*/
7
8extern char *strccpy(char *s1, char *s2, char c);
9extern char *strcpy(char *s1, char *s2);
10extern char *strncpy(char *s1, char *s2, int n);
11extern char *strcat(char *s1, char *s2);
12extern char *strncat(char *s1, char *s2, int n);
13extern char *strchr(char *sp, char c);
14extern char *strrchr(char *sp, char c);
15extern char *strpbrk(char *string, char *brkset);
16extern char *strtok(char *string, char *sepset);
17extern char *index(char *str, char c);
18extern char *rindex(char *str, char c);
19extern char *str2lc(char *s);
20extern char *str2uc(char *s);
21
22extern int strcmp(char *s1, char *s2);
23extern int strlcmp(char *s, char *l[]);
24extern int strncmp(char *s1, char *s2, int n);
25extern int strlen(char *s);
26extern int strspn(char *string, char *charset);
27extern int strcspn(char *string, char *charset);
28
29extern long strtol(char *str, char **ptr, int base);
Note: See TracBrowser for help on using the repository browser.