-
Notifications
You must be signed in to change notification settings - Fork 1
/
strutil.c
128 lines (110 loc) · 1.53 KB
/
strutil.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* $Id$
*
* Support library for distrbute+archive
*
* By Shigeya Suzuki, Dec 1993
* Copyright(c)1993 Shigeya Suzuki
*/
#include <config.h>
#include <stdio.h>
#include <sys/types.h>
#include <sysexits.h>
#include <memory.h>
#ifndef HAVE_STRSTR
/* Find the first occurrence of find in s.
*/
char *
strstr(s, find)
register char *s, *find;
{
register char c, sc;
register size_t len;
if ((c = *find++) != 0) {
len = strlen(find);
do {
do {
if ((sc = *s++) == 0)
return (NULL);
} while (sc != c);
} while (strncmp(s, find, len) != 0);
s--;
}
return ((char *)s);
}
#endif /*HAVE_STRSTR*/
#ifndef HAVE_STRSPN
size_t
strspn(s, cs)
const char *s;
const char *cs;
{
const char *p;
const char *q;
size_t cnt;
int matched;
p = s;
while (*p) {
q = cs;
matched = 0;
while (*q) {
if (*p == *q) {
matched++;
break;
}
q++;
}
if (!matched)
return p - s;
p++;
}
return p - s;
}
#endif /*HAVE_STRSPN*/
char *
strcpycut(d, s, n)
char *d, *s;
size_t n;
{
int len = strlen(s);
if (len >= n)
len = n-1;
memcpy(d, s, len);
d[len] = '\0';
return d;
}
char*
skiptononspace(s)
char *s;
{
while (*s == ' ')
s++;
return s;
}
/* change characters
*/
char *
changech(s, f, t)
char *s;
int f, t;
{
char *top = s;
for ( ; *s; s++)
if (*s == f)
*s = t;
return top;
}
/* Chop at LF
*/
char *
chopatlf(s)
char *s;
{
char *top = s;
for (; *s; s++) {
if (*s == '\n') {
*s = '\0';
break;
}
}
return top;
}