2010-05-12 21:34:42 +02:00
|
|
|
/*
|
|
|
|
* QString Module
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Luiz Capitulino <lcapitulino@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2009-08-28 20:27:06 +02:00
|
|
|
#ifndef QSTRING_H
|
|
|
|
#define QSTRING_H
|
|
|
|
|
2009-11-19 02:05:26 +01:00
|
|
|
#include <stdint.h>
|
2009-08-28 20:27:06 +02:00
|
|
|
#include "qobject.h"
|
|
|
|
|
|
|
|
typedef struct QString {
|
|
|
|
QObject_HEAD;
|
|
|
|
char *string;
|
2009-11-11 17:49:51 +01:00
|
|
|
size_t length;
|
|
|
|
size_t capacity;
|
2009-08-28 20:27:06 +02:00
|
|
|
} QString;
|
|
|
|
|
2009-11-11 17:49:51 +01:00
|
|
|
QString *qstring_new(void);
|
2009-08-28 20:27:06 +02:00
|
|
|
QString *qstring_from_str(const char *str);
|
2009-11-19 02:05:27 +01:00
|
|
|
QString *qstring_from_substr(const char *str, int start, int end);
|
2009-08-28 20:27:06 +02:00
|
|
|
const char *qstring_get_str(const QString *qstring);
|
2009-11-19 02:05:26 +01:00
|
|
|
void qstring_append_int(QString *qstring, int64_t value);
|
2009-11-11 17:49:51 +01:00
|
|
|
void qstring_append(QString *qstring, const char *str);
|
2009-11-19 02:05:25 +01:00
|
|
|
void qstring_append_chr(QString *qstring, int c);
|
2009-08-28 20:27:06 +02:00
|
|
|
QString *qobject_to_qstring(const QObject *obj);
|
|
|
|
|
|
|
|
#endif /* QSTRING_H */
|