diff options
Diffstat (limited to 'FICS/network.c')
-rw-r--r-- | FICS/network.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/FICS/network.c b/FICS/network.c index f22487a..ac5a509 100644 --- a/FICS/network.c +++ b/FICS/network.c @@ -206,11 +206,13 @@ PRIVATE int sendme(int which, char *str, int len) } /* - * -1 for an error other than EWOULDBLOCK. - * Put <lf> after every <cr> and put \ at the end of overlength lines. - * Doesn't send anything unless the buffer fills, output waits until - * flushed -*/ + * Put LF after every CR and put '\' at the end of overlength lines. + * + * Doesn't send anything unless the buffer fills and output waits + * until flushed. + * + * '-1' for an error other than 'EWOULDBLOCK'. + */ PUBLIC int net_send_string(int fd, char *str, int format) { |