Commit 828d1c5e authored by philipjsg's avatar philipjsg

* Add prototype for strlcpy


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@480 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3f80c262
......@@ -178,6 +178,8 @@ AVFormat *guess_format(const char *short_name, const char *filename, const char
int strstart(const char *str, const char *val, const char **ptr);
void nstrcpy(char *buf, int buf_size, const char *str);
/* This does what strncpy ought to do. */
void strlcpy(char *dst, const char *src, int dst_size);
int match_ext(const char *filename, const char *extensions);
void register_all(void);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment