Add strlc{at,py} protos

This commit is contained in:
Todd C. Miller
2003-03-13 17:54:04 +00:00
parent 7ce95c61c8
commit a54c8e66fa

6
sudo.h
View File

@@ -196,6 +196,12 @@ int vasprintf __P((char **, const char *, va_list));
#ifndef HAVE_STRCASECMP #ifndef HAVE_STRCASECMP
int strcasecmp __P((const char *, const char *)); int strcasecmp __P((const char *, const char *));
#endif #endif
#ifndef HAVE_STRLCAT
size_t strlcat __P((char *, const char *, size_t));
#endif
#ifndef HAVE_STRLCPY
size_t strlcpy __P((char *, const char *, size_t));
#endif
char *sudo_goodpath __P((const char *)); char *sudo_goodpath __P((const char *));
char *tgetpass __P((const char *, int, int)); char *tgetpass __P((const char *, int, int));
int find_path __P((char *, char **, char *)); int find_path __P((char *, char **, char *));