File:  [ELWIX - Embedded LightWeight unIX -] / libaitio / example / test.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 23 22:54:52 2010 UTC (14 years, 4 months ago) by misho
Branches: start
CVS tags: misho, io1_0
libaitio for I/O console operations

#include <stdio.h>
#include <aitio.h>


int main()
{
	int ret;
	char str[256], *s;

	printf("std:: %s ioPromptRead(NULL) -> %d\n", str, ioPromptRead(NULL, NULL, str, 256));
	printf("std:: %s ioPromptRead(PIUK> ) -> %d\n", str, (ret = ioPromptRead(NULL, "PIUK> ", str, 256)));
	printf("geterror:: #%d - %s\n", io_GetErrno(), io_GetError());

	printf("std:: %s w/o confirm ioPromptPassword(NULL) -> %d\n", str, 
			ioPromptPassword(NULL, NULL, str, 256, 0));
	printf("std:: %s ioPromptPassword(NULL) -> %d\n", str, 
			ioPromptPassword(NULL, NULL, str, 256, 1));
	printf("std:: %s w/o confirm ioPromptPassword(PIUK> ) -> %d\n", str, 
			(ret = ioPromptPassword(NULL, "PIUK pass: ", str, 256, 0)));
	printf("geterror:: #%d - %s\n", io_GetErrno(), io_GetError());

	printf("std:: %s ioPromptRead(FLIUP: ) -> %d\n", str, (ret = ioPromptRead(NULL, "FLIUP: ", str, 256)));

	printf("regex:: %s ioRegexVerify([0-9]+) -> %s\n", str, ioRegexVerify("[0-9]+", "shmink132sdf09", NULL, NULL));
	printf("regex:: %s ioRegexGet([0-9]+) -> %d\n", str, ioRegexGet("[0-9]+", "shmink132sdf09", str, 256));
	printf("regex:: %s not match ioRegexGet([ab]+) -> %d\n", str, ioRegexGet("[ab]+", "shmink132sdf09", str, 256));

	s = ioRegexReplace("[0-9]+", "0shmink132sdf09", "XXX");
	printf("regex:: ioRegexReplace([0-9]+) -> %s with XXX\n", s);
	free(s);
	s = ioRegexReplace("[0-9]+", "shmink132sdf09", NULL);
	printf("regex:: ioRegexReplace([0-9]+) -> %s clear!\n", s);
	free(s);

	return 0;
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>