My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/development/libs/libbowl/utils.h

21 lines
378 B

#ifndef _UTIL_H_
#define _UTIL_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "bowl.h"
err_t _array_rescale(void ***, size_t *len, size_t use);
err_t _array_search(void **, size_t, size_t *out, void *in);
err_t _array_remove(void **, size_t idx, size_t len, void **out);
err_t _hash(char *str, size_t len, size_t *out);
#ifdef __cplusplus
}
#endif
#endif // _UTIL_H_