Searched defs:cdr (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/lib/isccc/include/isccc/
H A Dsexpr.h40 isccc_sexpr_t *cdr; member in struct:isccc_dottedpair
60 #define ISCCC_SEXPR_CDR(s) (s)->value.as_dottedpair.cdr
63 isccc_sexpr_cons(isccc_sexpr_t *car, isccc_sexpr_t *cdr);
90 isccc_sexpr_setcdr(isccc_sexpr_t *pair, isccc_sexpr_t *cdr);
/bind-9.11.3/lib/isccc/
H A Dsexpr.c39 #define CDR(s) (s)->value.as_dottedpair.cdr
42 isccc_sexpr_cons(isccc_sexpr_t *car, isccc_sexpr_t *cdr) { argument
50 CDR(sexpr) = cdr;
155 isccc_sexpr_t *cdr; local
175 cdr = CDR(sexpr);
176 if (cdr != NULL) {
178 if (cdr->type != ISCCC_SEXPRTYPE_DOTTEDPAIR) {
180 isccc_sexpr_print(cdr, stream);
181 cdr = NULL;
184 sexpr = cdr;
226 isccc_sexpr_setcdr(isccc_sexpr_t *pair, isccc_sexpr_t *cdr) argument
[all...]

Completed in 16 milliseconds