gstrvbuilder.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Copyright © 2020 Canonical Ltd.
  3. * Copyright © 2021 Alexandros Theodotou
  4. *
  5. * SPDX-License-Identifier: LGPL-2.1-or-later
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #ifndef __G_STRVBUILDER_H__
  21. #define __G_STRVBUILDER_H__
  22. #if !defined(__GLIB_H_INSIDE__) && !defined(GLIB_COMPILATION)
  23. #error "Only <glib.h> can be included directly."
  24. #endif
  25. #include <glib/gstrfuncs.h>
  26. #include <glib/gtypes.h>
  27. G_BEGIN_DECLS
  28. typedef struct _GStrvBuilder GStrvBuilder;
  29. GLIB_AVAILABLE_IN_2_68
  30. GStrvBuilder *g_strv_builder_new (void);
  31. GLIB_AVAILABLE_IN_2_68
  32. void g_strv_builder_unref (GStrvBuilder *builder);
  33. GLIB_AVAILABLE_IN_2_82
  34. GStrv g_strv_builder_unref_to_strv (GStrvBuilder *builder);
  35. GLIB_AVAILABLE_IN_2_68
  36. GStrvBuilder *g_strv_builder_ref (GStrvBuilder *builder);
  37. GLIB_AVAILABLE_IN_2_68
  38. void g_strv_builder_add (GStrvBuilder *builder,
  39. const char *value);
  40. GLIB_AVAILABLE_IN_2_70
  41. void g_strv_builder_addv (GStrvBuilder *builder,
  42. const char **value);
  43. GLIB_AVAILABLE_IN_2_70
  44. void g_strv_builder_add_many (GStrvBuilder *builder,
  45. ...) G_GNUC_NULL_TERMINATED;
  46. GLIB_AVAILABLE_IN_2_80
  47. void g_strv_builder_take (GStrvBuilder *builder,
  48. char *value);
  49. GLIB_AVAILABLE_IN_2_68
  50. GStrv g_strv_builder_end (GStrvBuilder *builder);
  51. G_END_DECLS
  52. #endif /* __G_STRVBUILDER_H__ */