source: azure_iot_hub/trunk/azure_iohub/c-utility/inc/azure_c_shared_utility/utf8_checker.h@ 388

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

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-chdr
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.