Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/cmd/9nfs/strparse.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include <u.h>
#include <libc.h>

int	strcomment = '#';

int
strparse(char *p, int arsize, char **arv)
{
	int arc = 0;

	/*print("parse: 0x%lux = \"%s\"\n", p, p);/**/
	while(p){
		while(*p == ' ' || *p == '\t')
			p++;
		if(*p == 0 || *p == strcomment)
			break;
		if(arc >= arsize-1)
			break;
		arv[arc++] = p;
		while(*p && *p != ' ' && *p != '\t')
			p++;
		if(*p == 0)
			break;
		*p++ = 0;
	}
	arv[arc] = 0;
	/*while(*arv){
		print("\t0x%lux = \"%s\"\n", *arv, *arv);
		++arv;
	}/**/
	return arc;
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.