UpnpString object implementation. More...
#include "config.h"#include "UpnpString.h"#include <stdlib.h>#include <string.h>
Data Structures | |
| struct | SUpnpString |
| Internal implementation of the class UpnpString. More... | |
Functions | |
| UpnpString * | UpnpString_new () |
| Constructor. | |
| void | UpnpString_delete (UpnpString *p) |
| Destructor. | |
| UpnpString * | UpnpString_dup (const UpnpString *p) |
| Copy Constructor. | |
| void | UpnpString_assign (UpnpString *p, const UpnpString *q) |
| Assignment operator. | |
| int | UpnpString_get_Length (const UpnpString *p) |
| Returns the length of the string. | |
| const char * | UpnpString_get_String (const UpnpString *p) |
| Returns the pointer to char. | |
| void | UpnpString_set_String (UpnpString *p, const char *s) |
| Sets the string from a pointer to char. | |
| void | UpnpString_set_StringN (UpnpString *p, const char *s, int n) |
| Sets the string from a pointer to char using a maximum of N chars. | |
| void | UpnpString_clear (UpnpString *p) |
| Clears the string, sets its size to zero. | |
UpnpString object implementation.
1.7.1