Statistics
| Branch: | Revision:

root / qstring.c @ 1f3d3c8f

History | View | Annotate | Download (1.5 kB)

# Date Author Comment
aa43d9cc 09/04/2009 08:43 pm Blue Swirl

Shuffle lines to avoid gcc 3 warning about redundant redeclaration

Signed-off-by: Blue Swirl <>

66f70487 09/04/2009 05:37 pm Luiz Capitulino

Introduce QString

QString is a high-level data type that can be used to represent
C strings.

The following functions are available:

- qstring_from_str() Create a new QString
- qstring_get_str() Get a pointer to the stored string

Note that qstring_get_str() is too low-level for a data type like...