recall() now properly closes storage.txt on completion.

This commit is contained in:
Reina Harrington-Affine 2025-09-02 20:35:08 +00:00
parent e57d4717d7
commit 5ec722b2ca

View file

@ -9,6 +9,7 @@ int posLongest = 0;
int main(){ int main(){
store(); store();
enumerate(); enumerate();
recall();
return 0; return 0;
} }
@ -70,4 +71,5 @@ void recall (){
putchar(c); putchar(c);
} }
} }
fclose (fp);
} }