source: azure_iot_hub_f767zi/trunk/azure_iot_sdk/c-utility/inc/azure_c_shared_utility/utf8_checker.h@ 457

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

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 546 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>
9#else
10#include <stdbool.h>
11#include <stddef.h>
12#endif
13
14#include "umock_c/umock_c_prod.h"
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20MOCKABLE_FUNCTION(, bool, utf8_checker_is_valid_utf8, const unsigned char*, utf8_str, size_t, length);
21
22#ifdef __cplusplus
23}
24#endif /* __cplusplus */
25
26#endif /* UTF8_CHECKER_H */
Note: See TracBrowser for help on using the repository browser.