src/common.[ch]: Changed the signature of `sstrncpy' to match that of `strncpy'.
authorFlorian Forster <octo@noris.net>
Wed, 5 Mar 2008 08:27:28 +0000 (09:27 +0100)
committerFlorian Forster <octo@noris.net>
Wed, 5 Mar 2008 08:27:28 +0000 (09:27 +0100)
src/common.c
src/common.h

index 3489e8d..a2c4794 100644 (file)
@@ -52,11 +52,13 @@ static pthread_mutex_t getpwnam_r_lock = PTHREAD_MUTEX_INITIALIZER;
 static pthread_mutex_t strerror_r_lock = PTHREAD_MUTEX_INITIALIZER;
 #endif
 
-void sstrncpy (char *d, const char *s, int len)
+char *sstrncpy (char *dest, const char *src, size_t n)
 {
-       strncpy (d, s, len);
-       d[len - 1] = '\0';
-}
+       strncpy (dest, src, n);
+       dest[n - 1] = '\0';
+
+       return (dest);
+} /* char *sstrncpy */
 
 char *sstrdup (const char *s)
 {
index 8e0d840..e99aea6 100644 (file)
@@ -38,7 +38,7 @@
 
 #define STATIC_ARRAY_SIZE(a) (sizeof (a) / sizeof (*(a)))
 
-void sstrncpy(char *d, const char *s, int len);
+char *sstrncpy (char *dest, const char *src, size_t n);
 char *sstrdup(const char *s);
 void *smalloc(size_t size);
 char *sstrerror (int errnum, char *buf, size_t buflen);