1 /*-
2  * SPDX-License-Identifier: CC0-1.0
3  *
4  * Written in 2021 by Alfonso Sabato Siciliano.
5  * To the extent possible under law, the author has dedicated all copyright
6  * and related and neighboring rights to this software to the public domain
7  * worldwide. This software is distributed without any warranty, see:
8  *   <http://creativecommons.org/publicdomain/zero/1.0/>.
9  */
10 
11 #include <bsddialog.h>
12 #include <stdio.h>
13 #include <string.h>
14 
15 int main()
16 {
17 	int output;
18 	struct bsddialog_conf conf;
19 
20 	if (bsddialog_init() == BSDDIALOG_ERROR) {
21 		printf("Error: %s\n", bsddialog_geterror());
22 		return (1);
23 	}
24 
25 	bsddialog_initconf(&conf);
26 	conf.title = "yesno";
27 	output = bsddialog_yesno(&conf, "Example", 7, 25);
28 
29 	bsddialog_end();
30 
31 	switch (output) {
32 	case BSDDIALOG_ERROR:
33 		printf("Error %s\n", bsddialog_geterror());
34 		break;
35 	case BSDDIALOG_YES:
36 		printf("YES\n");
37 		break;
38 	case BSDDIALOG_NO:
39 		printf("NO\n");
40 		break;
41 	}
42 
43 	return (output);
44 }