11 lines
225 B
C
11 lines
225 B
C
|
// Copyright 2023 Dexter.Wan. All Rights Reserved.
|
||
|
// EMail: 45141961@qq.com
|
||
|
|
||
|
#if !defined(UTF8_H)
|
||
|
#define UTF8_H
|
||
|
|
||
|
int MQTT_UTF8_validate(int len, const char *data);
|
||
|
int MQTT_UTF8_validateString(const char* string);
|
||
|
|
||
|
#endif
|