mirror of
https://github.com/Wessel/c-websocket-server.git
synced 2026-07-12 02:42:13 +02:00
10 lines
155 B
C
10 lines
155 B
C
#ifndef ACTIVE_H
|
|
#define ACTIVE_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
extern size_t connections_size;
|
|
extern char* connections[100];
|
|
extern int connections_head;
|
|
|
|
#endif |