-*- mode: C; c-basic-indent: 4; tab-width: 8; indent-tabs-mode: nil -*- vim: set cindent ts=8 sw=4 expandtab:
String utility functions defined shall provide basic string copying capabilities.
Definition in file psString.h.
#include <sys/types.h>
#include "psType.h"
Include dependency graph for psString.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | PS_STRING(S) #S |
| This macro will convert the argument to a quoted string. | |
Functions | |
| psString | psStringCopy (const char *string) |
| Copies the input string. | |
| psString | psStringNCopy (const char *string, unsigned int nChar) |
| Copies the input string up to the specified number of characters. | |
| ssize_t | psStringAppend (char **dest, const char *format,...) |
| Appends a format onto a string. | |
| ssize_t | psStringPrepend (char **dest, const char *format,...) |
| Prepends a format onto a string. | |
|
|
This macro will convert the argument to a quoted string.
Definition at line 28 of file psString.h. |
1.4.2