Use new text accessors.
[geda-gaf/berndj.git] / libgeda / tests / uuidgen.c
blob048285e00e9939354b925f72752254049b552b30
1 #include "config.h"
3 #include <glib.h>
4 #include <libguile.h>
5 #include <stdio.h>
6 #include "defines.h"
7 #include "struct.h"
8 #include "prototype.h"
10 int main()
12 char *uuid;
14 uuid = u_basic_make_uuid();
15 if (uuid == NULL) {
16 return 1;
19 printf("%s\n", uuid);
21 g_free(uuid);
23 return 0;