Statistics
| Branch: | Revision:

root / qstring.c @ dd4239d6

History | View | Annotate | Download (2.3 kB)

# Date Author Comment
d30ec846 11/17/2009 04:49 pm Anthony Liguori

Allow strings to grow in size

This lets us use QString for building larger strings

Signed-off-by: Anthony Liguori <>

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...