2019-09-30 10:54:40 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Copyright (c) Huawei Technologies Co., Ltd. 2018-2019. All rights reserved.
|
2020-04-27 09:45:00 +08:00
|
|
|
* lcr licensed under the Mulan PSL v2.
|
|
|
|
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
|
|
|
* You may obtain a copy of Mulan PSL v2 at:
|
|
|
|
|
* http://license.coscl.org.cn/MulanPSL2
|
2019-09-30 10:54:40 -04:00
|
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
|
|
|
|
|
* PURPOSE.
|
2020-04-27 09:45:00 +08:00
|
|
|
* See the Mulan PSL v2 for more details.
|
2019-09-30 10:54:40 -04:00
|
|
|
* Author: wujing
|
|
|
|
|
* Create: 2018-11-08
|
|
|
|
|
* Description: provide container buffer definition
|
|
|
|
|
******************************************************************************/
|
2020-01-20 10:43:34 +08:00
|
|
|
#ifndef LCR_BUFFER_H
|
|
|
|
|
#define LCR_BUFFER_H
|
2019-09-30 10:54:40 -04:00
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <strings.h>
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
|
|
typedef struct Buffer {
|
|
|
|
|
char *contents;
|
|
|
|
|
size_t bytes_used;
|
|
|
|
|
size_t total_size;
|
|
|
|
|
} Buffer;
|
|
|
|
|
|
|
|
|
|
Buffer *buffer_alloc(size_t initial_size);
|
|
|
|
|
void buffer_free(Buffer *buf);
|
|
|
|
|
int buffer_nappendf(Buffer *buf, size_t length, const char *format, ...);
|
|
|
|
|
char *buffer_to_s(const Buffer *buf);
|
|
|
|
|
#endif
|