Searched refs:REQUIRE (Results 1 – 1 of 1) sorted by relevance
/picolibc-latest/newlib/libc/posix/ |
D | regcomp.c | 148 #define REQUIRE(co, e) ((co) || SETERROR(e)) macro 149 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) 150 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e)) 151 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) 311 (void)REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */ in p_ere() 357 (void)REQUIRE(MORE(), REG_EPAREN); in p_ere_exp() 413 (void)REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp() 418 (void)REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp() 434 (void)REQUIRE(!wascaret, REG_BADRPT); in p_ere_exp() 461 (void)REQUIRE(count <= count2, REG_BADBR); in p_ere_exp() [all …]
|