Run unctustify, fix some Readme wording

This commit is contained in:
Alfred Gedeon 2021-05-19 08:20:02 -07:00 committed by alfred gedeon
parent a2029c781c
commit 0c0333985b
13 changed files with 1589 additions and 1527 deletions

View file

@ -25,21 +25,22 @@
*/
#ifndef CONSOLE_H
#define CONSOLE_H
#define CONSOLE_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
extern "C" {
#endif
/*-----------------------------------------------------------
* Example console I/O wrappers.
*----------------------------------------------------------*/
* Example console I/O wrappers.
*----------------------------------------------------------*/
void console_init(void);
void console_print(const char *fmt, ...);
void console_init( void );
void console_print( const char * fmt,
... );
#ifdef __cplusplus
}
#endif
#ifdef __cplusplus
}
#endif
#endif /* CONSOLE_H */