Annotation of libaitio/example/test.c, revision 1.6.24.1
1.1 misho 1: #include <stdio.h>
1.2 misho 2: #include <string.h>
1.1 misho 3: #include <aitio.h>
4:
5:
1.2 misho 6: int main(int argc, char **argv)
1.1 misho 7: {
8: int ret;
1.2 misho 9: char str[256], *s, s0[2][256];
1.1 misho 10:
1.2 misho 11: if (argc < 2) {
12: printf("std:: %s ioPromptRead(NULL) -> %d\n", str, ioPromptRead(NULL, NULL, str, 256));
13: printf("std:: %s ioPromptRead(PIUK> ) -> %d\n", str, (ret = ioPromptRead(NULL, "PIUK> ", str, 256)));
14: printf("geterror:: #%d - %s\n", io_GetErrno(), io_GetError());
15:
16: printf("std:: %s w/o confirm ioPromptPassword(NULL) -> %d\n", str,
17: ioPromptPassword(NULL, NULL, str, 256, 0));
18: printf("std:: %s ioPromptPassword(NULL) -> %d\n", str,
19: ioPromptPassword(NULL, NULL, str, 256, 1));
20: printf("std:: %s w/o confirm ioPromptPassword(PIUK> ) -> %d\n", str,
21: (ret = ioPromptPassword(NULL, "PIUK pass: ", str, 256, 0)));
22: printf("geterror:: #%d - %s\n", io_GetErrno(), io_GetError());
23:
24: printf("std:: %s ioPromptRead(FLIUP: ) -> %d\n", str, (ret = ioPromptRead(NULL, "FLIUP: ", str, 256)));
25:
26: printf("regex:: %s ioRegexVerify([0-9]+) -> %s\n", str, ioRegexVerify("[0-9]+", "shmink132sdf09", NULL, NULL));
27: printf("regex:: %s ioRegexGet([0-9]+) -> %d\n", str, ioRegexGet("[0-9]+", "shmink132sdf09", str, 256));
28: printf("regex:: %s not match ioRegexGet([ab]+) -> %d\n", str, ioRegexGet("[ab]+", "shmink132sdf09", str, 256));
29:
30: s = ioRegexReplace("[0-9]+", "0shmink132sdf09", "XXX");
31: printf("regex:: ioRegexReplace([0-9]+) -> %s with XXX\n", s);
1.6.24.1! misho 32: io_free(s);
1.2 misho 33: s = ioRegexReplace("[0-9]+", "shmink132sdf09", NULL);
34: printf("regex:: ioRegexReplace([0-9]+) -> %s clear!\n", s);
1.6.24.1! misho 35: io_free(s);
1.2 misho 36: }
37:
38: if (argc > 2) {
1.3 misho 39: char *s1, *s2;
40:
1.4 misho 41: s1 = io_Ch2Hex("PIUK_GN IAH", 256);
42: s2 = io_Hex2Ch((unsigned char*) s1, strlen(s1));
1.3 misho 43: printf("S1=%s S2=%s\n", s1, s2);
1.6.24.1! misho 44: io_free(s2);
! 45: io_free(s1);
1.3 misho 46:
47: printf( "1=%d\n", io_LTrimStr(argv[1]));
48: printf( "2=%d\n", io_RTrimStr(argv[2]));
49: printf( "3=%d\n", io_TrimStr(argv[3]));
50: printf("'%s' '%s' '%s'\n", argv[1], argv[2], argv[3]);
1.2 misho 51: printf("test p=%s f=%s path2file=%d\n", s0[0], s0[1], io_Path2File(argv[2], s0[0], 256, s0[1], 256));
52: return 0;
53: }
54:
1.1 misho 55: return 0;
56: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>