mirror of
https://github.com/opnsense/src.git
synced 2026-03-21 18:30:08 -04:00
19 lines
245 B
C
19 lines
245 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <ncurses.h>
|
||
|
|
#include <dialog.h>
|
||
|
|
#include <forms.h>
|
||
|
|
|
||
|
|
extern struct form *form;
|
||
|
|
|
||
|
|
void
|
||
|
|
main()
|
||
|
|
{
|
||
|
|
printf("Testing forms code\n");
|
||
|
|
|
||
|
|
if (init_forms("example.frm") == -1)
|
||
|
|
exit(1);
|
||
|
|
|
||
|
|
edit_form(form);
|
||
|
|
}
|