Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/bsddialog/examples_library/rangebox.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 value, 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 = "rangebox";
25
value = 5;
26
output = bsddialog_rangebox(&conf, "Example", 8, 50, 0, 10, &value);
27
bsddialog_end();
28
if (output == BSDDIALOG_ERROR) {
29
printf("Error: %s\n", bsddialog_geterror());
30
return (1);
31
}
32
printf("Value: %d\n", value);
33
34
return (0);
35
}
36