1 #include "../vg_platform.h"
9 int main( int argc
, const char *argv
[] )
11 struct yo yo
= { 300.324, 2023.334, -324.1232, 30.494 };
12 printf( "{%f %f %f %f}\n", yo
.a
, yo
.b
, yo
.c
, yo
.d
);
14 char text
[ sizeof(yo
)*2 ];
15 vg_bin_str( &yo
, text
, sizeof(yo
) );
17 printf( "encoded: %.*s\n", (int)(sizeof(yo
)*2), text
);
19 vg_str_bin( text
, &yo
, sizeof(yo
)*2 );
21 printf( "{%f %f %f %f}\n", yo
.a
, yo
.b
, yo
.c
, yo
.d
);