annotate src/librsvg-test.c @ 754:3eedae9ff7dd

test program for package librsvg
author Volker Grabsch <vog@notjusthosting.com>
date Tue, 16 Feb 2010 03:18:23 +0100
parents
children 0b78f6aabad8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
754
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
1 /* This file is part of mingw-cross-env. */
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
2 /* See doc/index.html for further information. */
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 #include <librsvg/rsvg.h>
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
6 int main(int argc, char* argv[])
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
7 {
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 RsvgHandle* handle;
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
9
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10 (void)argc;
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11 (void)argv;
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 handle = rsvg_handle_new();
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 rsvg_handle_free(handle);
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 return 0;
3eedae9ff7dd test program for package librsvg
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 }