mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
18 lines
323 B
C
18 lines
323 B
C
/*
|
|
* Copyright (c) 2023, Artinchip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Wu Dehuang <dehuang.wu@artinchip.com>
|
|
*/
|
|
|
|
#ifndef _LOG_BUF_H_
|
|
#define _LOG_BUF_H_
|
|
|
|
int log_buf_init(void);
|
|
int log_buf_get_len(void);
|
|
int log_buf_write(char *in, int len);
|
|
int log_buf_read(char *out, int len);
|
|
|
|
#endif
|