mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-29 10:17:30 +02:00
16 lines
292 B
C
16 lines
292 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#pragma once
|
|
#include <ctype.h>
|
|
#include "net/if.h"
|
|
|
|
#undef isspace
|
|
#define isspace(__c) (__ctype_lookup((int)__c)&_S)
|
|
|
|
#include_next "config.h"
|
|
|
|
#define VERSION "v2.0.20~1"
|