diff options
author | 2019-05-21 20:04:23 +0300 | |
---|---|---|
committer | 2019-05-21 20:04:23 +0300 | |
commit | 92dbb5804e65b9802cdb8e788e6a7503d31a89e8 (patch) | |
tree | acdb2e5f4fa463060fbf004f22b362fb1cbd7e30 /include | |
parent | b24fdd90aee29a5e6362be5d8f061f7cbd500052 (diff) | |
download | usurpation-92dbb5804e65b9802cdb8e788e6a7503d31a89e8.tar.gz usurpation-92dbb5804e65b9802cdb8e788e6a7503d31a89e8.tar.bz2 usurpation-92dbb5804e65b9802cdb8e788e6a7503d31a89e8.zip |
daemon: implemented stdio interfaces
Signed-off-by: Paulius Ratkevičius <pauliuz95@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/proto_stdio.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/proto_stdio.h b/include/proto_stdio.h index 7f9bcee..81955a9 100644 --- a/include/proto_stdio.h +++ b/include/proto_stdio.h @@ -2,6 +2,7 @@ * Usurpation – null (stdio) im proto * * Copyright (C) 2019 Gediminas Jakutis + * Copyright (C) 2019 Paulius Ratkevičius * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -23,5 +24,7 @@ int proto_stdio_init(void); void proto_stdio_close(void); +void message_receive(char *); +char * message_send(void); #endif /* USURPATION_PROTO_STDIO_H */ |