mirror of
https://github.com/JDM170/model_coder
synced 2025-12-10 05:57:19 +07:00
8 lines
153 B
C
8 lines
153 B
C
#ifndef TEA_ENCODE
|
|
#define TEA_ENCODE
|
|
|
|
void encode(unsigned int* v, const unsigned int* k);
|
|
void decode(unsigned int* v, const unsigned int* k);
|
|
|
|
#endif
|