summaryrefslogtreecommitdiff
path: root/source/kit/input_stream.h
blob: a0d00e7da03c024c87840fd0dc35ae032e55350f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef KIT_INPUT_STREAM_H
#define KIT_INPUT_STREAM_H

#include "allocator.h"
#include "string_ref.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef ptrdiff_t (*kit_is_read_fn)(void       *state,
                                    kit_out_str destination);

struct kit_is_handle {
  void          *state;
  kit_is_read_fn read;
};

struct kit_is_handle kit_is_wrap_string(kit_cstr             string,
                                        struct kit_allocator alloc);

void kit_is_destroy(struct kit_is_handle in);

#define KIT_IS_WRAP_STRING(string) \
  kit_is_wrap_string((string), kit_alloc_default())

#define KIT_IS_READ(in, destination) \
  (in).read((in).state, (destination))

#ifndef KIT_DISABLE_SHORT_NAMES
#  define is_read_fn kit_is_read_fn
#  define is_handle kit_is_handle
#  define is_wrap_string kit_is_wrap_string
#  define is_destroy kit_is_destroy

#  define IS_WRAP_STRING KIT_IS_WRAP_STRING
#  define IS_READ KIT_IS_READ
#endif

#ifdef __cplusplus
}
#endif

#endif