git @ Cat's Eye Technologies Dipple / master c / test2.c
master

Tree @master (Download .tar.gz)

test2.c @masterraw · history · blame

/*
 * SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
 * For more information, please refer to <https://unlicense.org/>
 * SPDX-License-Identifier: Unlicense
 */

#include <stdio.h>

int
main(int argc, char **argv)
{
	FILE *f;
	char line[80];

	if ((f = popen("script -q /dev/null ./test1", "r")) == NULL)
		exit(64);

	while (!feof(f)) {
		fgets(line, 79, f);
		if (feof(f))
			break;
		printf("got: %s", line);
		fflush(stdout);
	}

	pclose(f);
	return(0);
}