shithub: riscv

ref: 05f6c08985c9bd522e0a938f0e90b20df3f6792d
dir: /sys/src/cmd/faces/dblook.c/

View raw version
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <plumb.h>
#include <regexp.h>
#include <bio.h>
#include "faces.h"

void
main(int argc, char **argv)
{
	Face f;
	char *q;

	if(argc != 3){
		fprint(2, "usage: dblook name domain\n");
		exits("usage");
	}

	q = findfile(&f, argv[2], argv[1]);
	print("%s\n", q);
}

void
killall(char *s)
{
	USED(s);
}