diff options
author | Konstantin Kowalski <kostyakow42@gmail.com> | 2013-07-27 10:53:01 -0400 |
---|---|---|
committer | Konstantin Kowalski <kostyakow42@gmail.com> | 2013-07-27 10:53:01 -0400 |
commit | 77ebbed91b350686a1a14f7f6b054ed38e6a2045 (patch) | |
tree | 3f8216199a9f53dadebfd4d3e49273007d374237 /core/misc_tools.h | |
parent | 4edf2207fe1fe41e5ad6a17067eb91bd9fdbaef9 (diff) |
created new files misc_tools.(c|h) and moved hex_string_to_bin() there.
Diffstat (limited to 'core/misc_tools.h')
-rw-r--r-- | core/misc_tools.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/core/misc_tools.h b/core/misc_tools.h new file mode 100644 index 00000000..29b37ce5 --- /dev/null +++ b/core/misc_tools.h | |||
@@ -0,0 +1,29 @@ | |||
1 | /* misc_tools.h | ||
2 | * | ||
3 | * Miscellaneous functions and data structures for doing random things. | ||
4 | * | ||
5 | * Copyright (C) 2013 Tox project All Rights Reserved. | ||
6 | * | ||
7 | * This file is part of Tox. | ||
8 | * | ||
9 | * Tox is free software: you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation, either version 3 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * Tox is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with Tox. If not, see <http://www.gnu.org/licenses/>. | ||
21 | * | ||
22 | */ | ||
23 | |||
24 | #ifndef MISC_TOOLS_H | ||
25 | #define MISC_TOOLS_H | ||
26 | |||
27 | unsigned char * hex_string_to_bin(char hex_string[]); | ||
28 | |||
29 | #endif // MISC_TOOLS_H \ No newline at end of file | ||