Adding src so far

This commit is contained in:
2024-08-20 09:35:05 -05:00
parent 6cf298cfea
commit cf9e6955e8
8 changed files with 170 additions and 86 deletions

11
apps/main.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
#include "requests.h"
int main(void) {
printf("Hello, world!\n");
requestInit();
requestGet("https://google.com");
requestCleanup();
}