source: azure_iot_hub_mbedtls/trunk/azure_iothub/c-utility/inc/azure_c_shared_utility/utf8_checker.h@ 398

Last change on this file since 398 was 398, checked in by coas-nagasima, 5 years ago

mbedTLS版Azure IoT Hub接続サンプルのソースコードを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 534 bytes
Line 
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
4#ifndef UTF8_CHECKER_H
5#define UTF8_CHECKER_H
6
7#ifdef __cplusplus
8#include <cstddef>
9extern "C" {
10#else
11#include <stdbool.h>
12#include <stddef.h>
13#endif
14
15#include "azure_c_shared_utility/umock_c_prod.h"
16
17MOCKABLE_FUNCTION(, bool, utf8_checker_is_valid_utf8, const unsigned char*, utf8_str, size_t, length);
18
19#ifdef __cplusplus
20}
21#endif /* __cplusplus */
22
23#endif /* UTF8_CHECKER_H */
Note: See TracBrowser for help on using the repository browser.