Browse code

Use strutils instead of snprintf (to save some bytes), set default year to 2014, partial revamp of the stopwatch

Dario Rodriguez authored on 14/01/2014 22:59:59
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,4 @@
1
+void mymemmove(void *dest, void *orig, int size);
2
+void mymemcpy(void *dest, void *orig, int size);
3
+void mymemset(void *dest, int value, int size);
4
+int mystrlen(char *str);