mirror of
https://github.com/yoboujon/tsock.git
synced 2025-06-08 14:00:50 +02:00
17 lines
No EOL
316 B
C
17 lines
No EOL
316 B
C
#ifndef HEADER_TSOCK
|
|
#define HEADER_TSOCK
|
|
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/un.h>
|
|
#include <netinet/in.h>
|
|
#include <netdb.h>
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
void setNbMessage(int * nb, int source);
|
|
void printInfo(int nb, int source);
|
|
|
|
#endif |