aboutsummaryrefslogtreecommitdiffstats
path: root/strcmove.c
blob: 2adc49ddf34103c89a01869d3de85fbb7a7cf3c2 (plain) (blame)
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
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST


char *
libsimple_strcmove(char *d, const char *s, int c_) /* TODO test, man */
{
	char c = (char)c_, *p;
	size_t n;
	if (d < s) {
		do {
			if ((*d++ = *s) == c)
				return d;
		} while (*s++);
	} else {
		for (p = *(char **)(void *)&s;; p++) {
			if (*p == c || *p) {
				n = (size_t)(p - s);
				p = &d[n];
				do { d[n] = s[n]; } while (n--);
				return *p == c ? &p[1] : NULL;
			}
		}
	}
	return NULL;
}


#else
#include "test.h"

int
main(void)
{
	return 0;
}

#endif