File: euslocal.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 (9 lines) | stat: -rw-r--r-- 369 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
#define strchr(p) ((char *)((p)->c.str.chars))
/*#define ckstrchr(p) (isstring(p)?strchr(p):(int)error(E_NOSTRING))*/
#define ckstrlength(p) (isstring(p)?strlength(p):(int)error(E_NOSTRING))
#define ckstrval(p) ckstrchr(p)
#define fvecfv(p) ((float *)((p)->c.fvec.fv))
#define ckfvecfv(p) (isfltvector(p)?fvecfv(p):(int)error(E_FLOATVECTOR))

extern long larg2long();