feat: added sling url decomposition

This commit is contained in:
2021-03-26 22:16:59 +01:00
parent f120b104e5
commit 8152ad6e9a
5 changed files with 104 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
//
// Created by rick on 26-03-21.
//
#ifndef NEW_KERNEL_SLINGURL_H
#define NEW_KERNEL_SLINGURL_H
void slingurl_decompose(const char* url);
#endif //NEW_KERNEL_SLINGURL_H

View File

@@ -19,6 +19,8 @@ size_t strlen(const char *str);
const char *strchr(const char *s, char c);
const char *strrchr(const char *s, char c);
int memcmp(const void *s1, const void *s2, size_t n);
int strcmp(const char *s1, const char *s2);