Files
esp-idf/components/esp_http_client/lib/include/http_utils.h
T

87 lines
2.5 KiB
C
Raw Normal View History

/*
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
2017-11-14 10:16:20 +07:00
#ifndef _HTTP_UTILS_H_
#define _HTTP_UTILS_H_
#include <sys/time.h>
2017-11-14 10:16:20 +07:00
/**
* @brief Assign new_str to *str pointer, and realloc *str if it not NULL
*
* @param str pointer to string pointer
* @param new_str assign this tring to str
2021-02-07 11:37:49 +08:00
* @param len length of string, less than 0 if new_str is zero terminated
2017-11-14 10:16:20 +07:00
*
* @return
* - new_str pointer
* - NULL
*/
char *http_utils_assign_string(char **str, const char *new_str, int len);
2021-01-07 13:47:22 +02:00
/**
2021-02-07 11:37:49 +08:00
* @brief Realloc *str and append new_str to it if new_str is not NULL; return *str pointer if new_str is NULL
2021-01-07 13:47:22 +02:00
*
* @param str pointer to string pointer
2021-02-07 11:37:49 +08:00
* @param new_str append this string to str
* @param len length of string, less than 0 if new_str is zero terminated
2021-01-07 13:47:22 +02:00
*
* @return
2021-02-07 11:37:49 +08:00
* - *str pointer
2021-01-07 13:47:22 +02:00
*/
char *http_utils_append_string(char **str, const char *new_str, int len);
2017-11-14 10:16:20 +07:00
/**
* @brief Remove white space at begin and end of string
*
* @param[in] str The string
*
* @return New strings have been trimmed
*/
void http_utils_trim_whitespace(char **str);
/**
* @brief Gets the string between 2 string.
* It will allocate a new memory space for this string, so you need to free it when no longer use
*
* @param[in] str The source string
* @param[in] begin The begin string
* @param[in] end The end string
*
* @return The string between begin and end
*/
char *http_utils_get_string_between(const char *str, const char *begin, const char *end);
/**
* @brief Join 2 strings to one
* It will allocate a new memory space for this string, so you need to free it when no longer use
*
* @param[in] first_str The first string
* @param[in] len_first The length first
* @param[in] second_str The second string
* @param[in] len_second The length second
*
* @return
* - New string pointer
* - NULL: Invalid input
*/
2020-11-17 12:48:35 +08:00
char *http_utils_join_string(const char *first_str, size_t len_first, const char *second_str, size_t len_second);
2017-11-14 10:16:20 +07:00
/**
* @brief Check if ``str`` is start with ``start``
*
* @param[in] str The string
* @param[in] start The start
*
* @return
* - (-1) if length of ``start`` larger than length of ``str``
* - (1) if ``start`` NOT starts with ``start``
* - (0) if ``str`` starts with ``start``
*/
int http_utils_str_starts_with(const char *str, const char *start);
#endif