diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-10-25 14:27:10 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-10-25 15:32:49 +0200 |
| commit | d19c7962600cde319ede932f162e24bf8391d65c (patch) | |
| tree | cc12185e8ca4574f05d5fca8a0b47dd2425bb27f /text.h | |
| parent | ecce157aeb21226266e718472e610d9a0a696fd4 (diff) | |
| download | vis-d19c7962600cde319ede932f162e24bf8391d65c.tar.gz vis-d19c7962600cde319ede932f162e24bf8391d65c.tar.xz | |
Change return type of text_save
Diffstat (limited to 'text.h')
| -rw-r--r-- | text.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ size_t text_size(Text*); bool text_modified(Text*); /* test whether the underlying file uses UNIX style \n or Windows style \r\n newlines */ bool text_newlines_crnl(Text*); -int text_save(Text*, const char *file); +bool text_save(Text*, const char *file); ssize_t text_write(Text*, int fd); void text_free(Text*); |
