Initial commit.

This commit is contained in:
2015-09-06 15:44:24 -05:00
commit b7937be49b
11 changed files with 542 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef MEMPHIS_MEMOPS_HPP
#define MEMPHIS_MEMOPS_HPP
namespace memphis {
void memcpy(void *src, void *dest, int size);
void memset(void *ptr, char val, int size);
}
#endif