posta/utils.h
2023-04-12 01:24:28 +02:00

13 lines
221 B
C

#ifndef UTILS_H
#define UTILS_H
#include <netinet/in.h>
#include <stdlib.h>
#include <sys/socket.h>
int create_connection(struct sockaddr_in *addr);
void close_connection(int socket);
char *get_token(char *s);
#endif