decode.h (271B)
1 #ifndef MINIROON_DECODE_H 2 #define MINIROON_DECODE_H 3 4 // implementation: 5 // {IMP} decode.c 6 7 #include "errors.h" 8 #include "bytebuffer.h" 9 #include "netstring.h" 10 #include "miniroon_data.h" 11 12 miniroon_error miniroon_decode(miniroon_data *md, const bytebuffer encoded); 13 14 #endif