Remove conflicting static strlen from the process header.

Not necessary per se, but it'll help when we switch over to CPP.
This commit is contained in:
Curle 2021-06-18 22:31:51 +01:00
parent 29ab9a5860
commit 752f44852b
Signed by: TheCurle
GPG Key ID: 5942F13718443F79

View File

@ -14,17 +14,11 @@
#define MAX_PROCESSES 128
#define PROCESS_STACK 65535
static size_t strlen(const char* String) {
size_t Len = 0;
while(String[Len] != '\0') {
Len++;
}
return Len;
};
static size_t
/**
* @brief All the data a process needs.
*
*
* Contains all the process-specific structs.
* Lots of private members, out of necessity
*/