~7-luca/skylable/master

« back to all changes in this revision

Viewing changes to libsxclient/src/misc.h

  • Committer: Alberto Wu
  • Date: 2015-10-29 16:39:50 UTC
  • Revision ID: git-v1:4d0837a887d92ed148e87a6e7bb7f4096046dc98
Allow building with valgrind hints (--enable-vghints)

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
int sxi_uuid_parse(const char *uuid_str, uint8_t *uuid);
40
40
void sxi_uuid_unparse(const uint8_t *uuid, char *uuid_str);
41
41
int sxi_hex2bin(const char *src, uint32_t src_len, uint8_t *dst, uint32_t dst_len);
42
 
unsigned int sxi_rand(void);
 
42
unsigned int sxi_rand(void); /* Note: use sxi_rand_pseudo_bytes if you need to detect random generation errors */
43
43
char *sxi_getenv(const char *name);
44
44
 
45
45
typedef struct _sxi_ht_t sxi_ht;