mirror of
https://github.com/ading2210/libcurl.js.git
synced 2025-05-12 14:00:01 -04:00
reorganize client code
This commit is contained in:
parent
9cc0e4178b
commit
717331bfc1
9 changed files with 8 additions and 7 deletions
5
client/libcurl/util.c
Normal file
5
client/libcurl/util.c
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include <string.h>
|
||||
|
||||
int starts_with(const char *a, const char *b) {
|
||||
return strncmp(a, b, strlen(b)) == 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue