Added JJbY.cpp

This commit is contained in:
anon 2024-03-10 15:57:35 +01:00
parent ff4fca8c45
commit 1cf3d71bc6

13
JJbY.cpp Normal file
View File

@ -0,0 +1,13 @@
// @BAKE g++ $@ $(pkg-config --cflags --libs menu ncurses); ./a.out
#include <stdio.h>
#include "menu.h"
int main() {
printf("E_NOT_CONNECTED: %d\n", E_NOT_CONNECTED);
printf("E_SYSTEM_ERROR: %d\n", E_SYSTEM_ERROR);
printf("E_OK: %d\n", E_OK);
printf("E_BAD_ARGUMENT: %d\n", E_BAD_ARGUMENT);
printf("E_POSTED: %d\n", E_POSTED);
return 0;
}