made work: copy a file, move a file, check if a file exists, delete a file

This commit is contained in:
Odweta
2023-12-23 19:51:54 +01:00
parent 29e1815e5b
commit 490a7cc973
8 changed files with 150 additions and 35 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ int main() {
printf("popping the last value of the list; in this case, it is an integer, so you type: 'int poppedValue = *((int *)listPop(list_t*))'\n");
int poppedValue = *((int *)listPop(l));
printf("popped: %d\n", poppedValue);
printf("popped: %d\n", poppedValue);
listPrint(l);
printf("more examples with diferrent types\nnote that the vector_t* is a pointer, so there is no need to write the special syntax!\n");