Files
baremetal-drivers/common/log_common.h
2022-09-13 10:34:53 +08:00

23 lines
551 B
C

/*
* Copyright (C) 2021 Alibaba Group Holding Limited
* Author: LuChongzhi <chongzhi.lcz@alibaba-inc.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __LOG_COMMON_H__
#define __LOG_COMMON_H__
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <string.h>
int printf_green(char *fmt, ...);
int printf_red(char *fmt, ...);
#endif /* __LOG_COMMON_H__ */