/* Generated file (by generator) */ /* * Copyright (C) 2015 William Yu * * This library is free software: you can redistribute it and/or modify it * under the terms of version 2.1. of the GNU Lesser General Public License * as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see . */ #if !defined (__LIBICAL_GLIB_H_INSIDE__) && !defined (LIBICAL_GLIB_COMPILATION) #error "Only can be included directly." #endif #ifndef I_CAL_MEMORY_H #define I_CAL_MEMORY_H #include #include G_BEGIN_DECLS LIBICAL_ICAL_EXPORT void * i_cal_memory_tmp_buffer (size_t size); LIBICAL_ICAL_EXPORT gchar * i_cal_memory_tmp_copy (const gchar *str); LIBICAL_ICAL_EXPORT void i_cal_memory_add_tmp_buffer (void *buf); LIBICAL_ICAL_EXPORT void i_cal_memory_free_ring (void); LIBICAL_ICAL_EXPORT void * i_cal_memory_new_buffer (size_t size); LIBICAL_ICAL_EXPORT void * i_cal_memory_resize_buffer (void *buf, size_t size); LIBICAL_ICAL_EXPORT void i_cal_memory_free_buffer (void *buf); LIBICAL_ICAL_EXPORT void i_cal_memory_append_string (gchar **buf, gchar **pos, size_t *buf_size, const gchar *str); LIBICAL_ICAL_EXPORT void i_cal_memory_append_char (gchar **buf, gchar **pos, size_t *buf_size, gchar ch); LIBICAL_ICAL_EXPORT gchar * i_cal_memory_strdup (const gchar *s); G_END_DECLS #endif /* I_CAL_MEMORY_H */