Searched defs:except (Results 1 - 2 of 2) sorted by relevance
/osnet-11/usr/src/lib/libnsl/dial/ |
H A D | strecpy.c | 6 * (the "License"). You may not use this file except in compliance 38 * strecpy(output, input, except) 43 * Characters in the except string will not be expanded. 47 strecpy(char *pout, char *pin, char *except) argument 54 if (!isprint(c) && (!except || !strchr(except, c))) { 83 if (c == '\\' && (!except || !strchr(except, c)))
|
/osnet-11/usr/src/lib/libgen/common/ |
H A D | strecpy.c | 6 * You may not use this file except in compliance with the License. 39 * strecpy(output, input, except) 44 * Characters in the `except' string will not be expanded. 47 * streadd( output, input, except ) 48 * Identical to strecpy() except returns address of null-byte at end 54 strecpy(char *pout, const char *pin, const char *except) argument 56 (void) streadd(pout, pin, except); 62 streadd(char *pout, const char *pin, const char *except) argument 67 if (!isprint(c) && (!except || !strchr(except, [all...] |
Completed in 62 milliseconds