summaryrefslogtreecommitdiff
path: root/src/common/include
diff options
context:
space:
mode:
authorAlex AUVOLAT <alexis211@gmail.com>2012-05-01 12:20:45 +0200
committerAlex AUVOLAT <alexis211@gmail.com>2012-05-01 12:20:45 +0200
commit5cac9acd3aedc8043d4272d93c56805c46ff6214 (patch)
treeba9eb5ef86f7cf7afd4f7ab02de1d6bb86715632 /src/common/include
parent66b32658d2e5aa99493dcb3abcb73cdb2cc6f0b5 (diff)
downloadTCE-5cac9acd3aedc8043d4272d93c56805c46ff6214.tar.gz
TCE-5cac9acd3aedc8043d4272d93c56805c46ff6214.zip
Some cleanup ; relocated the kernel at 0xC0000000
Diffstat (limited to 'src/common/include')
-rw-r--r--src/common/include/stdlib.h14
-rw-r--r--src/common/include/string.h14
-rw-r--r--src/common/include/types.h17
3 files changed, 45 insertions, 0 deletions
diff --git a/src/common/include/stdlib.h b/src/common/include/stdlib.h
new file mode 100644
index 0000000..2c5e6dd
--- /dev/null
+++ b/src/common/include/stdlib.h
@@ -0,0 +1,14 @@
+#ifndef _DEF_STDLIB_H
+#define _DEF_STDLIB_H
+
+#include <types.h>
+
+#define MIN(a, b) ((a) < (b) ? (a) : (b))
+#define MAX(a, b) ((a) > (b) ? (a) : (b))
+
+void *memcpy(void *dest, const void *src, int count);
+uint8_t *memset(uint8_t *dest, uint8_t val, int count);
+uint16_t *memsetw(uint16_t *dest, uint16_t val, int count);
+
+#endif
+
diff --git a/src/common/include/string.h b/src/common/include/string.h
new file mode 100644
index 0000000..a41459e
--- /dev/null
+++ b/src/common/include/string.h
@@ -0,0 +1,14 @@
+#ifndef _DEF_STRING_H
+#define _DEF_STRING_H
+
+// #include <stdlib.h>
+#include <types.h>
+
+int strlen(const char *str);
+char *strcpy(char *dest, const char *src);
+// char *strdup(const char *src); // uses malloc, that's bad
+char *strchr(const char *str, char c);
+char *strcat(char *dest, const char *src);
+int strcmp(const char *s1, const char *s2);
+
+#endif
diff --git a/src/common/include/types.h b/src/common/include/types.h
new file mode 100644
index 0000000..ec24ce5
--- /dev/null
+++ b/src/common/include/types.h
@@ -0,0 +1,17 @@
+#ifndef DEF_TYPES_H
+#define DEF_TYPES_H
+
+typedef unsigned long long uint64_t;
+typedef unsigned int uint32_t;
+typedef unsigned short uint16_t;
+typedef unsigned char uint8_t;
+typedef long long int64_t;
+typedef int int32_t;
+typedef short int16_t;
+typedef char int8_t;
+
+typedef unsigned int size_t;
+
+#define NULL 0
+
+#endif