summaryrefslogtreecommitdiff
path: root/src/common/string.c
diff options
context:
space:
mode:
authorAlex AUVOLAT <alexis211@gmail.com>2012-05-18 11:25:25 +0200
committerAlex AUVOLAT <alexis211@gmail.com>2012-05-18 11:25:25 +0200
commitf3e03796652b792bb3fd5d3d25b687b9a7f14633 (patch)
treefeef62986de699702136aaf0d56295fde9297115 /src/common/string.c
parentc19415d2ffb6f063f91983ff505e2530ab500908 (diff)
downloadTCE-f3e03796652b792bb3fd5d3d25b687b9a7f14633.tar.gz
TCE-f3e03796652b792bb3fd5d3d25b687b9a7f14633.zip
A bit of a change in the directory layout.
Diffstat (limited to 'src/common/string.c')
-rw-r--r--src/common/string.c81
1 files changed, 0 insertions, 81 deletions
diff --git a/src/common/string.c b/src/common/string.c
deleted file mode 100644
index 3825e47..0000000
--- a/src/common/string.c
+++ /dev/null
@@ -1,81 +0,0 @@
-#include <string.h>
-#include <stdlib_common.h>
-
-int strlen(const char *str) {
- int i = 0;
- while (str[i++]);
- return i;
-}
-
-char *strchr(const char *str, char c) {
- while (*str) {
- if (*str == c) return (char*)str;
- str++;
- }
- return NULL;
-}
-
-char *strcpy(char *dest, const char *src) {
- memcpy(dest, src, strlen(src) + 1);
- return (char*)src;
-}
-
-char *strdup(const char *src) {
- char* ret = malloc(strlen(src) + 1);
- if (ret == NULL) return ret;
- strcpy(ret, src);
- return ret;
-}
-
-char *strcat(char *dest, const char *src) {
- char *dest2 = dest;
- dest2 += strlen(dest) - 1;
- while (*src) {
- *dest2 = *src;
- src++;
- dest2++;
- }
- *dest2 = 0;
- return dest;
-}
-
-int strcmp(const char *s1, const char *s2) {
- while ((*s1) && (*s1 == *s2)) {
- s1++;
- s2++;
- }
- return (* (unsigned char*)s1 - *(unsigned char*)s2);
-}
-
-void *memcpy(void *vd, const void *vs, int count) {
- uint8_t *dest = (uint8_t*)vd, *src = (uint8_t*)vs;
- uint32_t f = count % 4, n = count / 4, i;
- const uint32_t* s = (uint32_t*)src;
- uint32_t* d = (uint32_t*)dest;
- for (i = 0; i < n; i++) {
- d[i] = s[i];
- }
- if (f != 0) {
- for (i = count - f; i < count; i++) {
- dest[i] = src[i];
- }
- }
- return vd;
-}
-
-void *memset(void *dest, int val, int count) {
- uint8_t *dest_c = (uint8_t*)dest;
- int i;
- for (i = 0; i < count; i++) {
- dest_c[i] = val;
- }
- return dest;
-}
-
-uint16_t *memsetw(uint16_t *dest, uint16_t val, int count) {
- int i;
- for (i = 0; i < count; i++) {
- dest[i] = val;
- }
- return dest;
-}