-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmissin.c
101 lines (89 loc) · 2.11 KB
/
missin.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
/*
* missing.c - Assorted standard functions that may be missing on older systems
* Written by David Griffith <[email protected]>
*
* This file is part of Frotz.
*
* Frotz is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Frotz is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdlib.h>
#include <string.h>
#include "frotz.h"
#ifdef NO_MEMMOVE
/*
* Unix-ish operating systems based on 4.2BSD or older or SYSVR3 or older
* lack memmove(3).
*
*/
void *A00263(void *dest, const void *src, size_t n)
{
char *d =(char *)dest;
char *s =(char *)src;
if(s == d) return dest;
if(s < d) { /* copy from back */
s=s+n-1;
d=d+n-1;
while(n--) *d-- = *s--;
} else /* copy from front */
while(n--) *d++=*s++;
return dest;
}
#endif /* NO_MEMMOVE */
#ifdef NO_STRDUP
/*
* Unix-ish operating systems based on 4.2BSD or older or SYSVR3 or older
* lack strdup(3) and strndup(3).
*
*/
char *A00264(const char *src)
{
char *str;
char *p;
int len = 0;
while (src[len])
len++;
str = malloc(len + 1);
p = str;
while (*src)
*p++ = *src++;
*p = '\0';
return str;
}
char *A00265(const char *src, size_t n)
{
char *str;
char *p;
int len = 0;
while (src[len] && len < n)
len++;
str = malloc(len + 1);
p = str;
while (len--) {
*p++ = *src++;
}
*p = '\0';
return str;
}
#endif /* NO_STRDUP */
#ifdef NO_LIBGEN_H
/*
* TOPS-20/KCC doesn't have libgen.h, and therefore no basename
*
*/
char * A00266(const char *filename) {
char *p = strrchr(filename,'/');
return p ? p + 1 : (char *) filename;
}
#endif /* NO_LIBGEN_H */