/* * Copyright (C) 2013 Freie Universität Berlin * * This file subject to the terms and conditions of the GNU Lesser General * Public License. See the file LICENSE in the top level directory for more * details. */ /** * @defgroup core_io IO Interface * @brief Interface to system io functions * @ingroup core * @{ * * @file io.h * @brief Prototypes for system io functions * * @author INRIA * @author Oliver Hahm */ #ifndef IO_H #define IO_H int fw_puts(char *data, int count); /** @} */ #endif /* IO_H */