summaryrefslogtreecommitdiff
path: root/Tests/FindGTK2/glib/main.c
blob: cf5e45845f04a9442fe5aa83eeb3a4ae81a85768 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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;
}