shithub: riscv

ref: 46cf9d4eb02a3a7c2516be3053994d4fb69eb949
dir: /sys/src/libndb/ndbvalfmt.c/

View raw version
#include <u.h>
#include <libc.h>
#include <bio.h>
#include <ndb.h>
#include "ndbhf.h"

static int
needquote(char *s)
{
	int c;

	while((c = *s++) != '\0'){
		if(ISWHITE(c) || c == '#')
			return 1;
	}
	return 0;
}

int
ndbvalfmt(Fmt *f)
{
	char *s = va_arg(f->args, char*);
	if(s == nil)
		s = "";
	if(needquote(s))
		return fmtprint(f, "\"%s\"", s);
	return fmtstrcpy(f, s);
}