Lines Matching refs:apothegm
44 char apothegm[] = "All work and no play\0 makes Jack a dull boy.\n"; variable
60 if (len > sizeof(apothegm) - *offp) in _reader()
61 len = sizeof(apothegm) - *offp; in _reader()
62 memcpy(buf, apothegm + *offp, len); in _reader()
97 ATF_REQUIRE(getline(&line, &linecap, fp) == sizeof(apothegm) - 1); in ATF_TC_BODY()
98 ATF_REQUIRE(memcmp(line, apothegm, sizeof(apothegm)) == 0); in ATF_TC_BODY()
99 ATF_REQUIRE(linecap >= sizeof(apothegm)); in ATF_TC_BODY()
188 n = strlen(apothegm); in ATF_TC_BODY()
191 ATF_REQUIRE(strcmp(line, apothegm) == 0); in ATF_TC_BODY()
194 n = strlen(apothegm + n + 1); in ATF_TC_BODY()
215 ATF_REQUIRE(getline(&line, &linecap, fp) == sizeof(apothegm) - 1); in ATF_TC_BODY()
216 ATF_REQUIRE(memcmp(line, apothegm, sizeof(apothegm)) == 0); in ATF_TC_BODY()
221 ATF_REQUIRE(getline(&line, &linecap, fp) == sizeof(apothegm) - 1); in ATF_TC_BODY()
222 ATF_REQUIRE(memcmp(line, apothegm, sizeof(apothegm)) == 0); in ATF_TC_BODY()