add basic code

This commit is contained in:
2024-12-11 20:29:59 +02:00
commit b47037f66e
3 changed files with 74 additions and 0 deletions

9
inc/swapper.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef __SWAPPER_HEADER
#define __SWAPPER_HEADER
#define __SWAPPER_MAX_STR_LENGTH 65535
int swapper_length_difference(char *, char *);
void swapper_swap(char *, char *);
#endif