Separated functionality into separate files. Added initial (untested) support for ARM.

This commit is contained in:
2013-12-06 13:47:22 -05:00
parent e97e0b0cf5
commit da4cc8b645
10 changed files with 308 additions and 136 deletions

8
include/brados/string.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef __brados_string_h__
#define __brados_string_h__
#include <stddef.h>
size_t strlen(const char *str);
#endif