diff options
-rw-r--r-- | test/ipv6.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/ipv6.c b/test/ipv6.c new file mode 100644 index 0000000..93c8f86 --- /dev/null +++ b/test/ipv6.c @@ -0,0 +1,10 @@ +#include <stdint.h> +#include <sys/types.h> +#include <stdio.h> + +int main() +{ + u_int8_t a = 27; + + printf("%02X\n", a); +}
\ No newline at end of file |