summaryrefslogtreecommitdiff
path: root/testing/misc_tools.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-10-08 21:05:14 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-10-09 17:33:37 +0000
commit605dfe882c52bfad4dee9678a69e4b816d93431d (patch)
tree10432adc5d3716cb28b833c6e156218b67c23494 /testing/misc_tools.h
parent77e025fae48a4f9cf6cf19a359b6c423545f3cc7 (diff)
Consistently use camel case enum names.
Including in tests and implementation files.
Diffstat (limited to 'testing/misc_tools.h')
-rw-r--r--testing/misc_tools.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/misc_tools.h b/testing/misc_tools.h
index 259525a5..e7060551 100644
--- a/testing/misc_tools.h
+++ b/testing/misc_tools.h
@@ -17,11 +17,11 @@ void to_hex(char *out, uint8_t *in, int size);
17int tox_strncasecmp(const char *s1, const char *s2, size_t n); 17int tox_strncasecmp(const char *s1, const char *s2, size_t n);
18int cmdline_parsefor_ipv46(int argc, char **argv, uint8_t *ipv6enabled); 18int cmdline_parsefor_ipv46(int argc, char **argv, uint8_t *ipv6enabled);
19 19
20void print_debug_log(Tox *m, TOX_LOG_LEVEL level, const char *file, uint32_t line, const char *func, 20void print_debug_log(Tox *m, Tox_Log_Level level, const char *file, uint32_t line, const char *func,
21 const char *message, void *user_data); 21 const char *message, void *user_data);
22 22
23Tox *tox_new_log(struct Tox_Options *options, TOX_ERR_NEW *err, void *log_user_data); 23Tox *tox_new_log(struct Tox_Options *options, Tox_Err_New *err, void *log_user_data);
24Tox *tox_new_log_lan(struct Tox_Options *options, TOX_ERR_NEW *err, void *log_user_data, bool lan_discovery); 24Tox *tox_new_log_lan(struct Tox_Options *options, Tox_Err_New *err, void *log_user_data, bool lan_discovery);
25 25
26int use_test_rng(uint32_t seed); 26int use_test_rng(uint32_t seed);
27 27