11 lines
203 B
C
11 lines
203 B
C
#include "libs/fileLoader.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
char *file = load_file_to_mem("test.c");
|
|
printf("File contents is\n\n%s", file);
|
|
return 0;
|
|
}
|