quakeforge/libs/video/renderer/vulkan/util.h

17 lines
488 B
C
Raw Normal View History

#ifndef __util_h
#define __util_h
#include <stdint.h>
int count_strings (const char * const *str);
void merge_strings (const char **out, const char * const *in1,
const char * const *in2);
void prune_strings (const char * const *reference, const char **strings,
uint32_t *count);
typedef struct strset_s strset_t;
strset_t *new_strset (const char * const *strings);
void del_strset (strset_t *strset);
int strset_contains (strset_t *strset, const char *str);
#endif//__util_h