diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-15 19:29:38 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-15 19:29:38 +0200 |
commit | 08ec536277a78ffd97ebfc6330966603c9bb41ef (patch) | |
tree | 8b3d2003084823589d06ae3ed7c6f6df9cb6ba0e /src/net.h | |
parent | msg: strings, not words (diff) | |
download | cimple-08ec536277a78ffd97ebfc6330966603c9bb41ef.tar.gz cimple-08ec536277a78ffd97ebfc6330966603c9bb41ef.zip |
net: drop the _all suffix
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,8 +15,8 @@ int net_bind(const char *port); int net_accept(int fd); int net_connect(const char *host, const char *port); -int net_send_all(int fd, const void *, size_t); -int net_recv_all(int fd, void *, size_t); +int net_send(int fd, const void *, size_t); +int net_recv(int fd, void *, size_t); struct buf; |