This repository has been archived on 2019-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
rip-vm2/partage/src/extremite.h

11 lines
196 B
C

#ifndef EXTREMITE_H
#define EXTREMITE_H
void ext_out(int port, int out);
void ext_in(const char addr[], int port, int in);
void ext_bidir(const char addr[], int port, int in, int out);
#endif