2024-06-26 12:57:41 +02:00
|
|
|
/*
|
2025-05-01 23:57:39 +07:00
|
|
|
* SPDX-FileCopyrightText: 2024-2025 Espressif Systems (Shanghai) CO LTD
|
2024-06-26 12:57:41 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
#pragma once
|
2025-05-01 23:57:39 +07:00
|
|
|
#include_next "config.h"
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* =======================================================================
|
|
|
|
|
* Do NOT include any other header before this comment.
|
|
|
|
|
* config.h header configures critical macros that must be set before any
|
|
|
|
|
* system or standard library headers are included.
|
|
|
|
|
* =======================================================================
|
|
|
|
|
*/
|
|
|
|
|
|
2024-06-26 12:57:41 +02:00
|
|
|
#include <ctype.h>
|
2024-12-20 13:47:33 +01:00
|
|
|
#include "net/if.h"
|
2024-06-26 12:57:41 +02:00
|
|
|
|
|
|
|
|
#undef isspace
|
|
|
|
|
#define isspace(__c) (__ctype_lookup((int)__c)&_S)
|
|
|
|
|
|
2025-03-05 15:24:09 +01:00
|
|
|
#define VERSION "v2.0.20~2"
|