written by Robert Elz; add Berkeley specific header
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Thu, 26 May 1988 05:24:05 +0000 (21:24 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Thu, 26 May 1988 05:24:05 +0000 (21:24 -0800)
SCCS-vsn: lib/libc/string/memccpy.c 5.3
SCCS-vsn: lib/libc/string/memchr.c 5.3
SCCS-vsn: lib/libc/string/memcmp.c 5.3
SCCS-vsn: lib/libc/string/memcpy.c 5.3
SCCS-vsn: lib/libc/string/memset.c 5.3
SCCS-vsn: lib/libc/string/strcspn.c 5.3
SCCS-vsn: lib/libc/string/strpbrk.c 5.3
SCCS-vsn: lib/libc/string/strspn.c 5.3
SCCS-vsn: lib/libc/string/strtok.c 5.3

usr/src/lib/libc/string/memccpy.c
usr/src/lib/libc/string/memchr.c
usr/src/lib/libc/string/memcmp.c
usr/src/lib/libc/string/memcpy.c
usr/src/lib/libc/string/memset.c
usr/src/lib/libc/string/strcspn.c
usr/src/lib/libc/string/strpbrk.c
usr/src/lib/libc/string/strspn.c
usr/src/lib/libc/string/strtok.c

index f25f529..be8245d 100644 (file)
@@ -1,16 +1,18 @@
 /*
  * Copyright (c) 1985 Regents of the University of California.
 /*
  * Copyright (c) 1985 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
-/*
- * Sys5 compat routine
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific written prior permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)memccpy.c  5.2 (Berkeley) 86/03/09";
-#endif
+static char sccsid[] = "@(#)memccpy.c  5.3 (Berkeley) %G%";
+#endif /* LIBC_SCCS and not lint */
 
 
 char *
 
 
 char *
index 3093347..e001c99 100644 (file)
@@ -1,16 +1,18 @@
 /*
  * Copyright (c) 1985 Regents of the University of California.
 /*
  * Copyright (c) 1985 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
-/*
- * Sys5 compat routine
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific written prior permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)memchr.c   5.2 (Berkeley) 86/03/09";
-#endif
+static char sccsid[] = "@(#)memchr.c   5.3 (Berkeley) %G%";
+#endif /* LIBC_SCCS and not lint */
 
 char *
 memchr(s, c, n)
 
 char *
 memchr(s, c, n)
index e6b2a50..799794b 100644 (file)
@@ -1,16 +1,18 @@
 /*
  * Copyright (c) 1985 Regents of the University of California.
 /*
  * Copyright (c) 1985 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
-/*
- * Sys5 compat routine
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific written prior permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)memcmp.c   5.2 (Berkeley) 86/03/09";
-#endif
+static char sccsid[] = "@(#)memcmp.c   5.3 (Berkeley) %G%";
+#endif /* LIBC_SCCS and not lint */
 
 memcmp(s1, s2, n)
        register char *s1, *s2;
 
 memcmp(s1, s2, n)
        register char *s1, *s2;
index 487fd70..15519d5 100644 (file)
@@ -1,16 +1,18 @@
 /*
  * Copyright (c) 1985 Regents of the University of California.
 /*
  * Copyright (c) 1985 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
-/*
- * Sys5 compat routine
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific written prior permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)memcpy.c   5.2 (Berkeley) 86/03/09";
-#endif
+static char sccsid[] = "@(#)memcpy.c   5.3 (Berkeley) %G%";
+#endif /* LIBC_SCCS and not lint */
 
 char *
 memcpy(t, f, n)
 
 char *
 memcpy(t, f, n)
index 2600ed5..d5eb06f 100644 (file)
@@ -1,16 +1,18 @@
 /*
  * Copyright (c) 1985 Regents of the University of California.
 /*
  * Copyright (c) 1985 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
-/*
- * Sys5 compat routine
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific written prior permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)memset.c   5.2 (Berkeley) 86/03/09";
-#endif
+static char sccsid[] = "@(#)memset.c   5.3 (Berkeley) %G%";
+#endif /* LIBC_SCCS and not lint */
 
 char *
 memset(s, c, n)
 
 char *
 memset(s, c, n)
index f32fa1a..7a460d8 100644 (file)
@@ -1,16 +1,18 @@
 /*
  * Copyright (c) 1985 Regents of the University of California.
 /*
  * Copyright (c) 1985 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
-/*
- * Sys5 compat routine
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific written prior permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strcspn.c  5.2 (Berkeley) 86/03/09";
-#endif
+static char sccsid[] = "@(#)strcspn.c  5.3 (Berkeley) %G%";
+#endif /* LIBC_SCCS and not lint */
 
 strcspn(s, set)
        register char *s, *set;
 
 strcspn(s, set)
        register char *s, *set;
index b1a2727..bb54b7a 100644 (file)
@@ -1,16 +1,18 @@
 /*
  * Copyright (c) 1985 Regents of the University of California.
 /*
  * Copyright (c) 1985 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
-/*
- * Sys 5 compat routine...
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific written prior permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strpbrk.c  5.2 (Berkeley) 86/03/09";
-#endif
+static char sccsid[] = "@(#)strpbrk.c  5.3 (Berkeley) %G%";
+#endif /* LIBC_SCCS and not lint */
 
 char *
 strpbrk(s, brk)
 
 char *
 strpbrk(s, brk)
index 8185083..819eed2 100644 (file)
@@ -1,16 +1,18 @@
 /*
  * Copyright (c) 1985 Regents of the University of California.
 /*
  * Copyright (c) 1985 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
-/*
- * Sys5 compat routine
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific written prior permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strspn.c   5.2 (Berkeley) 86/03/09";
-#endif
+static char sccsid[] = "@(#)strspn.c   5.3 (Berkeley) %G%";
+#endif /* LIBC_SCCS and not lint */
 
 strspn(s, set)
        register char *s, *set;
 
 strspn(s, set)
        register char *s, *set;
index e378a0a..e57a5e5 100644 (file)
@@ -1,16 +1,18 @@
 /*
 /*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
-/*
- * Sys5 compat routine
+ * Copyright (c) 1985 Regents of the University of California.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific written prior permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strtok.c   5.2 (Berkeley) 86/03/09";
-#endif
+static char sccsid[] = "@(#)strtok.c   5.3 (Berkeley) %G%";
+#endif /* LIBC_SCCS and not lint */
 
 char *
 strtok(s, sep)
 
 char *
 strtok(s, sep)