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 = "pause"; 27 output = bsddialog_pause(&conf, "Example", 8, 50, 10); 28 29 bsddialog_end(); 30 31 switch (output) { 32 case BSDDIALOG_OK: 33 printf("OK\n"); 34 break; 35 case BSDDIALOG_CANCEL: 36 printf("Cancel\n"); 37 break; 38 case BSDDIALOG_ERROR: 39 printf("Error: %s\n", bsddialog_geterror()); 40 break; 41 case BSDDIALOG_TIMEOUT: 42 printf("Timeout\n"); 43 break; 44 } 45 46 return (output); 47 }