mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
15 lines
253 B
C
15 lines
253 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#pragma once
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#include_next <stdio.h>
|
|
|
|
#if CONFIG_LIBC_PICOLIBC
|
|
FILE *open_memstream(char **, size_t *);
|
|
#endif
|