This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
prog-103-p-05-2030/Who_robbed_Thibouvre/proficiencies/scavenger_hunt/scavenger_hunt.c
T
2026-02-16 14:14:56 +01:00

10 lines
162 B
C

struct clue {
char letter;
long next_offset;
};
int scavenger_hunt_ref(char *input, char *output)
{
// FIXME: Implement this function
return 0;
}