diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2010-07-21 21:40:10 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-07-21 21:40:10 +0000 |
commit | a43416a54030f0cdf921ff4bd3e22bbe412ff603 (patch) | |
tree | 0edd455b27bf36cc0d7c96bd30ceb924bb84fdaf /libavformat/internal.h | |
parent | 7c89295145559b269cf8e257b735386016ef1814 (diff) | |
download | ffmpeg-a43416a54030f0cdf921ff4bd3e22bbe412ff603.tar.gz |
improve ff_get_line to return line length
Originally committed as revision 24400 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index 5833ef0229..b746c1dd5c 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -167,7 +167,7 @@ int ff_get_v_length(uint64_t val); */ void ff_put_v(ByteIOContext *bc, uint64_t val); -void ff_get_line(ByteIOContext *s, char *buf, int maxlen); +int ff_get_line(ByteIOContext *s, char *buf, int maxlen); #define SPACE_CHARS " \t\r\n" |