sandbox: add util functions

This commit is contained in:
2023-02-01 12:26:07 +00:00
parent 01b526660e
commit a0d1fee01e
3 changed files with 75 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
#ifndef SOCKS_UTIL_H_
#define SOCKS_UTIL_H_
#include <stddef.h>
extern void data_size_to_string(size_t value, char *out, size_t outsz);
#endif