Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/bsddialog/examples_library/infobox.c
39476 views
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 = "infobox";
25
conf.sleep = 3;
26
output = bsddialog_infobox(&conf, "Example\n(3 seconds)", 7, 20);
27
bsddialog_end();
28
if (output == BSDDIALOG_ERROR) {
29
printf("Error: %s\n", bsddialog_geterror());
30
return (1);
31
}
32
33
return (0);
34
}
35