A poorly written OS for the x86 arch. (WIP)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
eOS/lib/str.c

28 lines
565 B

#include "str.h"
unsigned int strlen(char* str) {
unsigned int len = 0;
for( char* c = str; *c != '\0'; c++ ) // search for end-of-string
len++;
return len;
}
char* strcat(char* buf, char* str) {
unsigned int bufferlen = strlen(buf);
// remove the 0x0 char from the buffer
*(buf + bufferlen) = 0x3f; // replace end-of-string
// with a placeholder
// concat the str to buf
int cc = 0;
for( char* c = str; *c != '\0'; c++ ) {
*(buf + bufferlen + cc) = *c;
cc++;
}
*(buf + bufferlen + cc) = '\0'; // add end-of-string
return buf;
}