feat: added task names

This commit is contained in:
2021-08-12 20:22:00 +02:00
parent be71f9a7e9
commit 94c6332e27
7 changed files with 32 additions and 12 deletions

View File

@@ -27,6 +27,10 @@ int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, int n);
char* strdup(const char* s);
char* strndup(const char* s, size_t n);
char *strcat(char *dest, const char *src);
char *strncat(char *dest, const char *src, size_t n);