2014-10-28 09:58:25 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef DISPLAY_PUTCHAR_H
|
|
|
|
#define DISPLAY_PUTCHAR_H
|
2010-12-14 16:40:47 +01:00
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-03-30 21:37:56 +01:00
|
|
|
void init_display_putchar(void);
|
2010-12-14 16:40:47 +01:00
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* DISPLAY_PUTCHAR_H */
|