blob: 915919d0da71c5491bc32ebd05c273ee1cd659c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "cptc.h"
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
const char *CPTC_token;
int main(void)
{
CPTC_token = getenv("CPTC_TOKEN");
CPTC("127.0.0.1", 8080);
}
|