blob: 79afbf5dc459210cca3a4b4655c2c375cf0fd463 (
plain)
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
|
/*
* String pointer manipulation routines.
* $Id$
* Copyright (c) 1997 by Tycho Softworks.
* For conditions of distribution and reuse see product license.
*/
#include <other/string.h>
char *tail(const char *tail)
{
if(!tail)
return NULL;
while(*tail)
++tail;
return (char *)tail;
}
char *left(char *str, size_t pos)
{
if(!str)
return NULL;
if(pos < strlen(str))
str[pos] = 0;
return str;
};
char *right(char *s, size_t l)
{
size_t len;
if(!s)
return NULL;
len = strlen(s);
if(len <= l)
return s;
return s + len - l;
}
|