From 2625606d4adb70709af454831a4d19c573b543f6 Mon Sep 17 00:00:00 2001 From: guowenxue <guowenxue@gmail.com> Date: Mon, 19 Aug 2024 17:10:43 +0800 Subject: [PATCH] update booster source code --- booster/ringbuf.h | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/booster/ringbuf.h b/booster/ringbuf.h index 23553cc..26153eb 100644 --- a/booster/ringbuf.h +++ b/booster/ringbuf.h @@ -1,13 +1,13 @@ -/******************************************************************************** - * Copyright: (C) 2021 LingYun IoT System Studio +/********************************************************************************* + * Copyright: (C) 2023 LingYun IoT System Studio. * All rights reserved. * * Filename: ringbuf.h - * Description: This head file + * Description: This file is common ring buffer API functions * - * Version: 1.0.0(2021年04月29日) + * Version: 1.0.0(11/08/23) * Author: Guo Wenxue <guowenxue@gmail.com> - * ChangeLog: 1, Release initial version on "2021年04月29日 12时18分32秒" + * ChangeLog: 1, Release initial version on "11/08/23 16:18:43" * ********************************************************************************/ @@ -16,7 +16,7 @@ struct ring_buffer { - unsigned char *buffer; + unsigned char *buffer; int wr_pointer; int rd_pointer; int size; -- Gitblit v1.9.1