Inkscape
Vector Graphics Editor
Loading...
Searching...
No Matches
cr-string.h
Go to the documentation of this file.
1/* -*- Mode: C; indent-tabs-mode:nil; c-basic-offset: 8-*- */
2
3/*
4 * This file is part of The Croco Library
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2.1 of the GNU Lesser General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 *
20 * See COPYRIGHTS file for copyright information.
21 */
22
28#ifndef __CR_STRING_H__
29#define __CR_STRING_H__
30
31#include <glib.h>
32#include "cr-utils.h"
33#include "cr-parsing-location.h"
34
35G_BEGIN_DECLS
36
37typedef struct _CRString CRString ;
38
63
65
66CRString *cr_string_new_from_string (const gchar * a_string) ;
67CRString * cr_string_new_from_gstring (GString const *a_string) ;
69gchar *cr_string_dup2 (CRString const *a_this) ;
70const gchar *cr_string_peek_raw_str (CRString const *a_this) ;
73
74G_END_DECLS
75
76#endif
The declaration of the CRParsingLocation object.
CRString * cr_string_new(void)
CRString * cr_string_new_from_string(const gchar *a_string)
gchar * cr_string_dup2(CRString const *a_this)
typedefG_BEGIN_DECLS struct _CRString CRString
Definition cr-string.h:37
CRString * cr_string_dup(CRString const *a_this)
void cr_string_destroy(CRString *a_this)
CRString * cr_string_new_from_gstring(GString const *a_string)
gint cr_string_peek_raw_str_len(CRString const *a_this)
const gchar * cr_string_peek_raw_str(CRString const *a_this)
The Croco library basic types definitions And global definitions.
This is a ship implementation of string based on GString.
Definition cr-string.h:52
CRParsingLocation location
The parsing location storage area.
Definition cr-string.h:61
GString * stryng
The GString where all the string operation happen.
Definition cr-string.h:57