efl/legacy/eina/src/lib/eina_ustrbuf.c

58 lines
1.7 KiB
C
Raw Normal View History

2010-08-16 22:28:34 -07:00
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "eina_strbuf_common.h"
#include "eina_unicode.h"
#include "eina_ustrbuf.h"
2010-08-16 23:58:26 -07:00
/*============================================================================*
* Local *
*============================================================================*/
/**
* @cond LOCAL
*/
#define _STRBUF_DATA_TYPE Eina_Unicode
#define _STRBUF_CSIZE sizeof(_STRBUF_DATA_TYPE)
#define _STRBUF_STRUCT_NAME Eina_UStrbuf
#define _STRBUF_STRLEN_FUNC(x) eina_unicode_strlen(x)
#define _STRBUF_STRESCAPE_FUNC(x) eina_unicode_escape(x)
#define _STRBUF_MAGIC EINA_MAGIC_USTRBUF
#define _STRBUF_MAGIC_STR __USTRBUF_MAGIC_STR
static const char __USTRBUF_MAGIC_STR[] = "Eina UStrbuf";
2010-07-27 19:37:05 -07:00
#define _FUNC_EXPAND(y) eina_ustrbuf_ ## y
2010-08-16 23:58:26 -07:00
/**
* @endcond
*/
/*============================================================================*
* Global *
*============================================================================*/
/*============================================================================*
* API *
*============================================================================*/
/**
* @addtogroup Eina_Unicode_String_Buffer_Group Unicode String Buffer
*
* @brief These functions provide unicode string buffers management.
*
* The Unicode String Buffer data type is designed to be a mutable string,
* allowing to append, prepend or insert a string to a buffer.
*
* @{
*/
#include "eina_strbuf_template_c.x"
2010-08-16 23:58:26 -07:00
/**
* @}
*/