Home | History | Annotate | Download | only in zlib

Lines Matching defs:hello

29 const char hello[] = "hello, hello!";
30 /* "hello world" would be more standard, but the repeated "hello"
34 const char dictionary[] = "hello";
64 uLong len = (uLong)strlen(hello)+1;
66 err = compress(compr, &comprLen, (const Bytef*)hello, len);
74 if (strcmp((char*)uncompr, hello)) {
94 int len = (int)strlen(hello)+1;
108 if (gzprintf(file, ", %s!", "hello") != 8) {
126 if (strcmp((char*)uncompr, hello)) {
151 if (strlen((char*)uncompr) != 7) { /* " hello!" */
155 if (strcmp((char*)uncompr, hello + 6)) {
175 uLong len = (uLong)strlen(hello)+1;
184 c_stream.next_in = (Bytef*)hello;
237 if (strcmp((char*)uncompr, hello)) {
350 uInt len = (uInt)strlen(hello)+1;
359 c_stream.next_in = (Bytef*)hello;
448 c_stream.next_in = (Bytef*)hello;
449 c_stream.avail_in = (uInt)strlen(hello)+1;
502 if (strcmp((char*)uncompr, hello)) {