]>
Commit | Line | Data |
---|---|---|
23e3fea5 | 1 | |
2 | #include "stdio.h" | |
3 | #include "stdlib.h" | |
4 | #include <string.h> | |
5 | #include <stdint.h> | |
6 | #include "haraka.h" | |
7 | #include "timing.h" | |
8 | #include <stdalign.h> | |
9 | ||
10 | ||
b6b666a8 | 11 | static void phex(uint8_t* str) |
23e3fea5 | 12 | { |
b6b666a8 | 13 | uint8_t len = 64; |
23e3fea5 | 14 | |
15 | unsigned char i; | |
16 | for (i = 0; i < len; ++i) | |
17 | printf("%lx, ", str[i]); | |
18 | printf("\n"); | |
19 | } | |
20 | int main() { | |
42472fbc | 21 | if(test_implementations() != 0)printf("help"); // lol i think i can just do without the != 0 cus C |
22 | else printf("ayayay"); | |
23e3fea5 | 23 | } |