2 Copyright (C) Andrew Tridgell 1998
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 compatibility functions - replacing functions for platforms that don't
30 int l
= strlen(s
) + 1;
31 char *ret
= (char *)malloc(l
);
39 char *getcwd(char *buf
, int size
)
47 pid_t
waitpid(pid_t pid
, int *statptr
, int options
)
50 return wait4(pid
, statptr
, options
, NULL
);
52 /* If wait4 is also not available, try wait3 for SVR3 variants */
53 /* Less ideal because can't actually request a specific pid */
54 /* At least the WNOHANG option is supported */
55 /* Code borrowed from apache fragment written by dwd@bell-labs.com */
56 int tmp_pid
, dummystat
;;
57 if (kill(pid
, 0) == -1) {
63 while (((tmp_pid
= wait3(statptr
, options
, 0)) != pid
) &&
64 (tmp_pid
!= -1) && (tmp_pid
!= 0) && (pid
!= -1))
73 void *memmove(void *dest
, const void *src
, size_t n
)
75 bcopy((char *) src
, (char *) dest
, n
);
81 /* Find the first ocurrence in S of any character in ACCEPT.
84 char *strpbrk(const char *s
, const char *accept
)
87 const char *a
= accept
;
89 if (*a
++ == *s
) return (char *)s
;
100 /* like strncpy but does not 0 fill the buffer and always null
101 terminates. bufsize is the size of the destination buffer */
102 size_t strlcpy(char *d
, const char *s
, size_t bufsize
)
104 size_t len
= strlen(s
);
106 if (bufsize
<= 0) return 0;
107 if (len
>= bufsize
) len
= bufsize
-1;
115 /* like strncat but does not 0 fill the buffer and always null
116 terminates. bufsize is the length of the buffer, which should
117 be one more than the maximum resulting string length */
118 size_t strlcat(char *d
, const char *s
, size_t bufsize
)
120 size_t len1
= strlen(d
);
121 size_t len2
= strlen(s
);
122 size_t ret
= len1
+ len2
;
124 if (len1
+len2
>= bufsize
) {
125 len2
= bufsize
- (len1
+1);
128 memcpy(d
+len1
, s
, len2
);
135 #ifdef REPLACE_INET_NTOA
136 char *rep_inet_ntoa(struct in_addr ip
)
138 unsigned char *p
= (unsigned char *)&ip
.s_addr
;
141 snprintf(buf
, 18, "%d.%d.%d.%d",
142 (int)p
[0], (int)p
[1], (int)p
[2], (int)p
[3]);
144 snprintf(buf
, 18, "%d.%d.%d.%d",
145 (int)p
[3], (int)p
[2], (int)p
[1], (int)p
[0]);
151 #ifdef REPLACE_INET_ATON
152 int inet_aton(const char *cp
, struct in_addr
*inp
)
154 unsigned int a1
, a2
, a3
, a4
;
157 if (strcmp(cp
, "255.255.255.255") == 0) {
158 inp
->s_addr
= (unsigned) -1;
162 if (sscanf(cp
, "%u.%u.%u.%u", &a1
, &a2
, &a3
, &a4
) != 4 ||
163 a1
> 255 || a2
> 255 || a3
> 255 || a4
> 255) {
167 ret
= (a1
<< 24) | (a2
<< 16) | (a3
<< 8) | a4
;
169 inp
->s_addr
= htonl(ret
);
171 if (inp
->s_addr
== (unsigned) -1) {
178 /* some systems don't take the 2nd argument */
179 int sys_gettimeofday(struct timeval
*tv
)
181 #if HAVE_GETTIMEOFDAY_TZ
182 return gettimeofday(tv
, NULL
);
184 return gettimeofday(tv
);