os-core/kernel/core/log.h

34 lines
685 B
C
Raw Normal View History

2019-05-29 11:10:01 +02:00
/******************************************************************************
*
* Copyright (c) 2017-2019 by Löwenware Ltd
* Please, refer LICENSE file for legal information
*
******************************************************************************/
/**
2019-12-01 22:57:02 +01:00
* @file print.h
2019-05-29 11:10:01 +02:00
* @author Ilja Kartašov <ik@lowenware.com>
* @brief
*
* @see https://lowenware.com/
*/
2019-12-01 22:57:02 +01:00
#ifndef LOG_H_AE38CD54_2822_47A5_AFB1_E785739FA01D
#define LOG_H_AE38CD54_2822_47A5_AFB1_E785739FA01D
2019-05-29 11:10:01 +02:00
2019-12-01 22:57:02 +01:00
#include <core/types.h>
2019-05-29 11:10:01 +02:00
void
2019-12-01 22:57:02 +01:00
k_log_init(void);
2019-05-29 11:10:01 +02:00
2019-12-01 22:57:02 +01:00
Ki32
k_logs(const Ki8 *string);
2019-12-01 22:57:02 +01:00
Ki32
k_logi(Ki64 value, Ku8 base);
2019-12-01 22:57:02 +01:00
Ki32
k_logu(Ku64 value, Ku8 base);
2019-12-01 22:57:02 +01:00
#endif /* !LOG_H */