#ifndef CLIENT_H
#define CLIENT_H
#define _POSIX_C_SOURCE 200809L
#include <stdio.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include "errors.h"
#include "sockets.h"
#define MAX_LEN 100
void processAndSendInput(int fd);
#endif