source: azure_iot_hub_f767zi/trunk/azure_iot_sdk/c-utility/inc/azure_c_shared_utility/string_tokenizer.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: 857 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 STRING_TOKENIZER_H
5#define STRING_TOKENIZER_H
6
7#include "azure_c_shared_utility/strings.h"
8#include "umock_c/umock_c_prod.h"
9#include "azure_c_shared_utility/string_tokenizer_types.h"
10
11#ifdef __cplusplus
12extern "C"
13{
14#endif
15
16MOCKABLE_FUNCTION(, STRING_TOKENIZER_HANDLE, STRING_TOKENIZER_create, STRING_HANDLE, handle);
17MOCKABLE_FUNCTION(, STRING_TOKENIZER_HANDLE, STRING_TOKENIZER_create_from_char, const char*, input);
18MOCKABLE_FUNCTION(, int, STRING_TOKENIZER_get_next_token, STRING_TOKENIZER_HANDLE, t, STRING_HANDLE, output, const char*, delimiters);
19MOCKABLE_FUNCTION(, void, STRING_TOKENIZER_destroy, STRING_TOKENIZER_HANDLE, t);
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif /*STRING_TOKENIZER_H*/
Note: See TracBrowser for help on using the repository browser.