Statistics
| Branch: | Revision:

root / qstring.h @ 9c9efb6b

History | View | Annotate | Download (426 Bytes)

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

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