#include <string.h>
#include "cr-string.h"
Go to the source code of this file.
Functions | |
CRString * | cr_string_new (void) |
Instanciates a CRString. | |
CRString * | cr_string_new_from_string (const gchar *a_string) |
Instanciate a string and initialise it to a_string. | |
CRString * | cr_string_new_from_gstring (GString *a_string) |
Instanciates a CRString from an instance of GString. | |
CRString * | cr_string_dup (CRString *a_this) |
gchar * | cr_string_dup2 (CRString *a_this) |
const gchar * | cr_string_peek_raw_str (CRString *a_this) |
Returns a pointer to the internal raw NULL terminated string of the current instance of CRString. | |
gint | cr_string_peek_raw_str_len (CRString *a_this) |
Returns the length of the internal raw NULL terminated string of the current instance of CRString. | |
void | cr_string_destroy (CRString *a_this) |
|
|
Definition at line 94 of file cr-string.c. References cr_parsing_location_copy(), cr_string_new_from_gstring(), cr_utils_trace_info, CRString, _CRString::location, and _CRString::stryng. Referenced by cr_utils_dup_glist_of_cr_string(). |
|
Definition at line 110 of file cr-string.c. References CRString, and _CRString::stryng. |
|
Instanciates a CRString.
Definition at line 33 of file cr-string.c. References cr_utils_trace_info, CRString, and _CRString::stryng. Referenced by cr_string_new_from_gstring(), and cr_string_new_from_string(). |
|
Instanciates a CRString from an instance of GString.
Definition at line 75 of file cr-string.c. References cr_string_new(), cr_utils_trace_info, CRString, and _CRString::stryng. Referenced by cr_string_dup(). |
|
Instanciate a string and initialise it to a_string.
Definition at line 54 of file cr-string.c. References cr_string_new(), cr_utils_trace_info, CRString, and _CRString::stryng. Referenced by cr_parser_parse_prio(). |
|
Returns a pointer to the internal raw NULL terminated string of the current instance of CRString.
Definition at line 131 of file cr-string.c. References CRString, and _CRString::stryng. |
|
Returns the length of the internal raw NULL terminated string of the current instance of CRString.
Definition at line 148 of file cr-string.c. References CRString, and _CRString::stryng. |