diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-03-28 22:10:01 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-03-28 22:19:12 -0700 |
commit | 1e443fbc6ff358a1ce5559263957cbb4c4f92cec (patch) | |
tree | a3d1526497714267476670f8d9ccc35c4b704f39 /com32/include/string.h | |
parent | bbb8f15936b851e6a0ef6f7bb2c95197bff35994 (diff) | |
download | syslinux-1e443fbc6ff358a1ce5559263957cbb4c4f92cec.tar.gz syslinux-1e443fbc6ff358a1ce5559263957cbb4c4f92cec.tar.xz syslinux-1e443fbc6ff358a1ce5559263957cbb4c4f92cec.zip |
Add stpcpy() and implement version/derivative queries
Add stpcpy(), and actually implement syslinux_version() and
syslinux_derivative_info().
Diffstat (limited to 'com32/include/string.h')
-rw-r--r-- | com32/include/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/com32/include/string.h b/com32/include/string.h index 65923723..af9792b6 100644 --- a/com32/include/string.h +++ b/com32/include/string.h @@ -33,6 +33,7 @@ __extern char *strncat(char *, const char *, size_t); __extern size_t strlcat(char *, const char *, size_t); __extern int strncmp(const char *, const char *, size_t); __extern char *strncpy(char *, const char *, size_t); +__extern char *stpcpy(char *, const char *); __extern char *stpncpy(char *, const char *, size_t); __extern size_t strlcpy(char *, const char *, size_t); __extern char *strpbrk(const char *, const char *); |