removed unused stl files which are largely outdated now

This commit is contained in:
shockrah 2019-10-14 00:47:43 -07:00
parent 1b9ed26506
commit 8a7d4e8994
4 changed files with 0 additions and 41 deletions

View File

@ -1,17 +0,0 @@
void memset(void* target, const unsigned ssize, const unsigned bsize) {
for(unsigned i=0;i<bsize;i++) {
}
}
int memcmp(const void* left, const void* right, const size_t size) {
for(unsigned i =0;i<size;i++) {
if(left[i] != right[i]) {
return 1;
}
}
return 0;
}
void* memalloc(const size_t size) {
}

View File

@ -1,11 +0,0 @@
struct MemSpace {
size_t size;
void* buffer;
};
/* Returns 0: if both memory buffers are the same
* Return !0: if the memory buffers are not the same
*
*/
int memcmp(const void* left, const void* right, const size_t size);
void* memalloc(const size_t);

View File

@ -1,2 +0,0 @@
// General input/output reharding stdio + file io

View File

@ -1,11 +0,0 @@
/*
* string.h
* String based utilities
*/
unsigned strlen(const char* str) {
unsigned idx = 0;
while(str[idx])
idx++;
return idx;
}