Lines Matching refs:STDOUT_NL
139 #define STDOUT_NL "\r\n" macro
141 #define STDOUT_NL "\n" macro
908 printf("Usage: pcre2grep [OPTION]... [PATTERN] [FILE1 FILE2 ...]" STDOUT_NL); in help()
909 printf("Search for PATTERN in each FILE or standard input." STDOUT_NL); in help()
910 printf("PATTERN must be present if neither -e nor -f is used." STDOUT_NL); in help()
913 printf("Callout scripts in patterns are supported." STDOUT_NL); in help()
915 printf("Callout scripts are not supported in this pcre2grep." STDOUT_NL); in help()
918 printf("\"-\" can be used as a file name to mean STDIN." STDOUT_NL); in help()
921 printf("Files whose names end in .gz are read using zlib." STDOUT_NL); in help()
925 printf("Files whose names end in .bz2 are read using bzlib2." STDOUT_NL); in help()
929 printf("Other files and the standard input are read as plain files." STDOUT_NL STDOUT_NL); in help()
931 printf("All files are read as plain files, without any interpretation." STDOUT_NL STDOUT_NL); in help()
934 printf("Example: pcre2grep -i 'hello.*world' menu.h main.c" STDOUT_NL STDOUT_NL); in help()
935 printf("Options:" STDOUT_NL); in help()
952 printf("%.*s%s" STDOUT_NL, n, " ", op->help_text); in help()
955 printf(STDOUT_NL "Numbers may be followed by K or M, e.g. --buffer-size=100K." STDOUT_NL); in help()
956 printf("The default value for --buffer-size is %d." STDOUT_NL, PCRE2GREP_BUFSIZE); in help()
957 printf("When reading patterns or file names from a file, trailing white" STDOUT_NL); in help()
958 printf("space is removed and blank lines are ignored." STDOUT_NL); in help()
959 printf("The maximum size of any pattern is %d bytes." STDOUT_NL, MAXPATLEN); in help()
961 printf(STDOUT_NL "With no FILEs, read standard input. If fewer than two FILEs given, assume -h." ST… in help()
962 printf("Exit status is 0 if any matches, 1 if no matches, and 2 if trouble." STDOUT_NL); in help()
2005 fprintf(stdout, "Binary file %s matches" STDOUT_NL, filename); in pcre2grep()
2014 fprintf(stdout, "%s" STDOUT_NL, printname); in pcre2grep()
2039 fprintf(stdout, "%d,%d" STDOUT_NL, (int)(matchptr + offsets[0] - ptr), in pcre2grep()
2045 fprintf(stdout, "%d,%d" STDOUT_NL, in pcre2grep()
2074 fprintf(stdout, STDOUT_NL); in pcre2grep()
2147 fprintf(stdout, "--" STDOUT_NL); in pcre2grep()
2168 fprintf(stdout, "--" STDOUT_NL); in pcre2grep()
2372 fprintf(stdout, "%s" STDOUT_NL, printname); in pcre2grep()
2384 fprintf(stdout, "%d" STDOUT_NL, count); in pcre2grep()
2705 fprintf(stdout, "pcre2grep version %s" STDOUT_NL, buffer); in handle_option()