10 lines
162 B
C
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;
|
|
} |