2021-06-12 13:41:25 +02:00
|
|
|
#include <stdio.h>
|
2021-06-02 00:45:26 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2021-06-12 13:41:25 +02:00
|
|
|
extern char *files_exist(const char *f);
|
|
|
|
extern void free_str(char *s);
|
2021-06-02 00:45:26 +02:00
|
|
|
|
|
|
|
int main(int argc, char const* argv[])
|
|
|
|
{
|
2021-06-12 13:41:25 +02:00
|
|
|
char *world = "/home/nathan/Downloads/hackerman.jpg,/home/nathan/x.txt";
|
|
|
|
char *chunk = files_exist(world);
|
|
|
|
printf("C: %s", chunk);
|
|
|
|
free_str(chunk);
|
2021-06-02 00:45:26 +02:00
|
|
|
return 0;
|
|
|
|
}
|