]> eyrie.org Git - kerberos/krb5-strength.git/blobdiff - portable/strndup.c
Update to rra-c-util 8.2 and C TAP Harness 4.7
[kerberos/krb5-strength.git] / portable / strndup.c
index 1a0c8166130b614e1ccd5cff7f26ed3f88e0e7a0..9ddcbc130c3360f3465a3202821a7e9aff67b328 100644 (file)
@@ -5,14 +5,15 @@
  * which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
  *
  * Written by Russ Allbery <eagle@eyrie.org>
+ * Copyright 2011-2012
+ *     The Board of Trustees of the Leland Stanford Junior University
  *
- * The authors hereby relinquish any claim to any copyright that they may have
- * in this work, whether granted under contract or by operation of law or
- * international treaty, and hereby commit to the public, at large, that they
- * shall not, at any time in the future, seek to enforce any copyright in this
- * work against any person or entity, or prevent any person or entity from
- * copying, publishing, distributing or creating derivative works of this
- * work.
+ * Copying and distribution of this file, with or without modification, are
+ * permitted in any medium without royalty provided the copyright notice and
+ * this notice are preserved.  This file is offered as-is, without any
+ * warranty.
+ *
+ * SPDX-License-Identifier: FSFAP
  */
 
 #include <config.h>
@@ -25,8 +26,8 @@
  * with the system versions.
  */
 #if TESTING
-# undef strndup
-# define strndup test_strndup
+#    undef strndup
+#    define strndup test_strndup
 char *test_strndup(const char *, size_t);
 #endif
 
@@ -43,7 +44,7 @@ strndup(const char *s, size_t n)
     }
 
     /* Don't assume that the source string is nul-terminated. */
-    for (p = s; (size_t) (p - s) < n && *p != '\0'; p++)
+    for (p = s; (size_t)(p - s) < n && *p != '\0'; p++)
         ;
     length = p - s;
     copy = malloc(length + 1);