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 14 int main() 15 { 16 int output; 17 struct bsddialog_conf conf; 18 19 if (bsddialog_init() == BSDDIALOG_ERROR) { 20 printf("Error: %s\n", bsddialog_geterror()); 21 return (1); 22 } 23 bsddialog_initconf(&conf); 24 conf.title = "yesno"; 25 output = bsddialog_yesno(&conf, "Example", 7, 25); 26 bsddialog_end(); 27 28 switch (output) { 29 case BSDDIALOG_ERROR: 30 printf("Error %s\n", bsddialog_geterror()); 31 return (1); 32 case BSDDIALOG_YES: 33 printf("[YES]\n"); 34 break; 35 case BSDDIALOG_NO: 36 printf("[NO]\n"); 37 break; 38 } 39 40 return (0); 41 }