Home
last modified time | relevance | path

Searched refs:pkgconf_buffer_t (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/pkgconf/libpkgconf/
H A Dbuffer.c36 pkgconf_buffer_append(pkgconf_buffer_t *buffer, const char *text) in pkgconf_buffer_append()
55 pkgconf_buffer_push_byte(pkgconf_buffer_t *buffer, char byte) in pkgconf_buffer_push_byte()
73 pkgconf_buffer_trim_byte(pkgconf_buffer_t *buffer) in pkgconf_buffer_trim_byte()
84 pkgconf_buffer_finalize(pkgconf_buffer_t *buffer) in pkgconf_buffer_finalize()
H A Dlibpkgconf.h458 } pkgconf_buffer_t; typedef
460 PKGCONF_API void pkgconf_buffer_append(pkgconf_buffer_t *buffer, const char *text);
461 PKGCONF_API void pkgconf_buffer_push_byte(pkgconf_buffer_t *buffer, char byte);
462 PKGCONF_API void pkgconf_buffer_trim_byte(pkgconf_buffer_t *buffer);
463 PKGCONF_API void pkgconf_buffer_finalize(pkgconf_buffer_t *buffer);
464 static inline const char *pkgconf_buffer_str(const pkgconf_buffer_t *buffer) { in pkgconf_buffer_str()
468 static inline size_t pkgconf_buffer_len(const pkgconf_buffer_t *buffer) { in pkgconf_buffer_len()
472 static inline char pkgconf_buffer_lastc(const pkgconf_buffer_t *buffer) { in pkgconf_buffer_lastc()
481 static inline void pkgconf_buffer_reset(pkgconf_buffer_t *buffer) { in pkgconf_buffer_reset()
487 PKGCONF_API bool pkgconf_fgetline(pkgconf_buffer_t *buffer, FILE *stream);
H A Dfileio.c20 pkgconf_fgetline(pkgconf_buffer_t *buffer, FILE *stream) in pkgconf_fgetline()
H A Dparser.c36 pkgconf_buffer_t readbuf = PKGCONF_BUFFER_INITIALIZER; in pkgconf_parser_parse()