owntone-server/src/misc.h

96 lines
1.6 KiB
C
Raw Normal View History

2009-04-30 08:25:52 -04:00
#ifndef __MISC_H__
#define __MISC_H__
#include <stdint.h>
2014-09-27 16:59:19 -04:00
#include <time.h>
2010-09-18 11:15:41 -04:00
struct onekeyval {
char *name;
char *value;
struct onekeyval *next;
struct onekeyval *sort;
2010-09-18 11:15:41 -04:00
};
struct keyval {
struct onekeyval *head;
struct onekeyval *tail;
};
2009-04-30 08:25:52 -04:00
int
safe_atoi32(const char *str, int32_t *val);
2009-04-30 08:25:52 -04:00
2010-02-08 08:58:14 -05:00
int
safe_atou32(const char *str, uint32_t *val);
2010-05-05 13:03:53 -04:00
int
safe_hextou32(const char *str, uint32_t *val);
2009-04-30 08:25:52 -04:00
int
safe_atoi64(const char *str, int64_t *val);
2010-01-10 06:09:29 -05:00
2010-02-08 08:58:14 -05:00
int
safe_atou64(const char *str, uint64_t *val);
2010-04-04 12:07:32 -04:00
int
safe_hextou64(const char *str, uint64_t *val);
2010-09-18 11:15:41 -04:00
/* Key/value functions */
struct keyval *
keyval_alloc(void);
2010-09-18 11:15:41 -04:00
int
keyval_add(struct keyval *kv, const char *name, const char *value);
int
keyval_add_size(struct keyval *kv, const char *name, const char *value, size_t size);
void
keyval_remove(struct keyval *kv, const char *name);
const char *
keyval_get(struct keyval *kv, const char *name);
void
keyval_clear(struct keyval *kv);
void
keyval_sort(struct keyval *kv);
2010-09-18 11:15:41 -04:00
char *
m_realpath(const char *pathname);
char *
unicode_fixup_string(char *str);
char *
trimwhitespace(const char *str);
uint32_t
djb_hash(void *data, size_t len);
2009-05-01 14:56:22 -04:00
char *
b64_decode(const char *b64);
2010-04-12 12:22:38 -04:00
char *
b64_encode(uint8_t *in, size_t len);
uint64_t
murmur_hash64(const void *key, int len, uint32_t seed);
2014-09-27 16:59:19 -04:00
/* Timer function for platforms without hi-res timers */
int
clock_gettime_with_res(clockid_t clock_id, struct timespec *tp, struct timespec *res);
struct timespec
timespec_add(struct timespec time1, struct timespec time2);
int
timespec_cmp(struct timespec time1, struct timespec time2);
2009-04-30 08:25:52 -04:00
#endif /* !__MISC_H__ */