blob: 01349040514649d9b134f4416b47bdfabef57ac9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (c) 2014 Kungliga Tekniska Högskolan
* (KTH Royal Institute of Technology, Stockholm, Sweden).
* See LICENSE for licensing information.
*/
#ifndef ERLPORT_H
#define ERLPORT_H
ssize_t
read_command(char *buf, size_t len);
int
write_status(char *msg);
#endif
|