16 lines
321 B
C
16 lines
321 B
C
// Copyright (2025) Beijing Volcano Engine Technology Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#ifndef __VOLC_HTTP_H__
|
|
#define __VOLC_HTTP_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char* volc_http_post(const char* uri, const char* post_data, int data_len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __VOLC_HTTP_H__ */ |