Lines Matching defs:section
444 "Key '%s' defined before section\n"), buf);
496 rc_getstringptr(struct rcfile *rcp, const char *section, const char *key,
506 rsp = rc_findsect(rcp, section);
525 rc_getstring(struct rcfile *rcp, const char *section, const char *key,
531 error = rc_getstringptr(rcp, section, key, &value);
536 "line too long for key '%s' in section '%s', max = %d\n"),
537 key, section, maxlen);
545 rc_getint(struct rcfile *rcp, const char *section, const char *key, int *value)
553 rsp = rc_findsect(rcp, section);
567 "invalid int value '%s' for key '%s' in section '%s'\n"),
568 rkp->rk_value, key, section);
581 rc_getbool(struct rcfile *rcp, const char *section, const char *key, int *value)
590 rsp = rc_findsect(rcp, section);
617 "invalid boolean value '%s' for key '%s' in section '%s' \n"),
618 p, key, section);
635 fprintf(stderr, "section=%s\n", rsp->rs_name);