2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
10 #include <afsconfig.h>
11 #include <afs/param.h>
27 /* Just like strncpy but shift-case in transit and forces null termination */
29 lcstring(char *d, char *s, int n)
34 if ((s == 0) || (d == 0))
35 return 0; /* just to be safe */
42 break; /* quit after transferring null */
44 *(d - 1) = 0; /* make sure null terminated */
50 ucstring(char *d, char *s, int n)
55 if ((s == 0) || (d == 0))
65 *(d - 1) = 0; /* make sure null terminated */
70 /* strcompose - concatenate strings passed to it.
72 * buf: storage for the composed string. Any data in it will be lost.
73 * len: length of the buffer.
74 * ...: variable number of string arguments. The last argument must be
76 * Returns buf or NULL if the buffer was not sufficiently large.
79 strcompose(char *buf, size_t len, ...)
82 size_t spaceleft = len - 1;
86 if (buf == NULL || len <= 0)
91 str = va_arg(ap, char *);
94 if (spaceleft < slen) /* not enough space left */
100 str = va_arg(ap, char *);