- separated curses.c out into separate source files to optimise

library use later on
- some small mods to existing functions
This commit is contained in:
Dan Lynch
2006-06-08 17:23:37 +00:00
parent 1697c78848
commit ad1aca0634
12 changed files with 754 additions and 0 deletions

12
src/hci/mucurses/alert.c Normal file
View File

@@ -0,0 +1,12 @@
#include <curses.h>
#include <vsprintf.h>
/**
* Audible signal
*
* @ret rc return status code
*/
int beep ( void ) {
printf("\a");
return OK;
}