#pragma once #include #include #include #include #include static inline char **next_charptr(char **s) { return (s + 1); } static inline void char_g_strfreev(char **s) { g_strfreev((gchar **)s); }