Junio C Hamano writes:
> Johannes Schindelin writes:
>
>> +void argv_array_split(struct argv_array *array, const char *to_split)
>> +{
>> +while (isspace(*to_split))
>> +to_split++;
>> +for (;;) {
>> +const char *p = to_split;
>> +
>> +if (!*p)
>> +
Johannes Schindelin writes:
> +void argv_array_split(struct argv_array *array, const char *to_split)
> +{
> + while (isspace(*to_split))
> + to_split++;
> + for (;;) {
> + const char *p = to_split;
> +
> + if (!*p)
> + break;
> +
> +
2 matches
Mail list logo