[xplc-cvs] xplc/uuid/bin uuidgen.c,1.4,1.5
Cross-platform lightweight components
Status: Alpha
Brought to you by:
pphaneuf
From: Pierre P. <pph...@us...> - 2005-12-20 02:28:57
|
Update of /cvsroot/xplc/xplc/uuid/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1060/uuid/bin Modified Files: uuidgen.c Log Message: Added a component to programmatically generate UUIDs. Index: uuidgen.c =================================================================== RCS file: /cvsroot/xplc/xplc/uuid/bin/uuidgen.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** uuidgen.c 21 Oct 2005 16:19:01 -0000 1.4 --- uuidgen.c 20 Dec 2005 02:28:49 -0000 1.5 *************** *** 320,323 **** --- 320,326 ---- if(uuid_output_fn) printf("%s\n", uuid_output_fn(uuid)); + + printf("UUID: %s\n", uuid_unparse_(uuid)); + printf("cdef: %s\n", uuid_unparse_x_(uuid)); } |