blob: cf5e45845f04a9442fe5aa83eeb3a4ae81a85768 [file] [log] [blame]
#include <glib.h>
int main(int argc, char* argv[])
{
if (!g_file_test("file", G_FILE_TEST_EXISTS)) {
g_print("File not found. \n");
} else {
g_print("File found. \n");
}
return 0;
}