22 lines
371 B
C
22 lines
371 B
C
/*
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "ncursefuncs.h"
|
|
|
|
/* ----------------------------------------------------------------- */
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int foo;
|
|
|
|
foo = essai_bigchars("foo", 0);
|
|
fprintf(stderr, " essai bigchars -> %d\n", foo);
|
|
|
|
return 0;
|
|
}
|
|
/* ----------------------------------------------------------------- */
|