File: vxw_proto.h

package info (click to toggle)
euslisp 9.27%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 55,344 kB
  • sloc: ansic: 41,162; lisp: 3,339; makefile: 256; sh: 208; asm: 138; python: 53
file content (12 lines) | stat: -rw-r--r-- 299 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
enum argument_type {
	A_CHAR, A_SHORT, A_LONG, A_FLOAT, A_DOUBLE,
	A_SYMBOL, A_VECTOR, A_STRUCT, A_END};

typedef 
  union number_union {
    double dval;
    struct {float  fval1,fval2;} f;
    struct {long   ival1,ival2;} i;
    struct {short  sval1, sval2, sval3, sval4;} s;
    } number_union;