Home | History | Annotate | Download | only in make-3.81

Lines Matching full:cptr

2943   char *cptr;
2947 cptr = line;
2950 while ((*cptr != 0)
2951 && (isspace ((unsigned char)*cptr)))
2952 cptr++;
2953 if (*cptr == 0)
2955 while ((*cptr != 0)
2956 && (!isspace((unsigned char)*cptr)))
2957 cptr++;
2965 cptr = line;
2969 while ((*cptr != 0)
2970 && (isspace ((unsigned char)*cptr)))
2971 cptr++;
2972 if (*cptr == 0)
2974 DB (DB_JOBS, ("argv[%d] = [%s]\n", argc, cptr));
2975 argv[argc++] = cptr;
2976 while ((*cptr != 0)
2977 && (!isspace((unsigned char)*cptr)))
2978 cptr++;
2979 if (*cptr != 0)
2980 *cptr++ = 0;