Statistics
| Branch: | Revision:

root / qstring.h @ 578c7b2c

History | View | Annotate | Download (884 Bytes)

# Date Author Comment
41836a9f 05/19/2010 06:45 pm Luiz Capitulino

Fix qtypes' licenses

- Change from GPL to LGPL
- Add license text when missing
- Minor cosmetic changes to make all headers look the same

Signed-off-by: Luiz Capitulino <>

6fe9565c 12/03/2009 05:41 pm Luiz Capitulino

QString: Introduce qstring_append_chr()

It appends a C char to a QString.

Signed-off-by: Luiz Capitulino <>
Signed-off-by: Anthony Liguori <>

764c1cae 12/03/2009 05:41 pm Luiz Capitulino

QString: Introduce qstring_append_int()

Signed-off-by: Luiz Capitulino <>
Signed-off-by: Anthony Liguori <>

4b5c5766 12/03/2009 05:41 pm Luiz Capitulino

QString: Introduce qstring_from_substr()

Note that we can now write qstring_from_str() as a wrapper.

Signed-off-by: Luiz Capitulino <>
Signed-off-by: Anthony Liguori <>

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