Blame view

RIOT/sys/ubjson/ubjson-internal.h 1.78 KB
a752c7ab   elopes   add first test an...
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  /*
   * Copyright (C) 2014  René Kijewski  <rene.kijewski@fu-berlin.de>
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU Lesser General Public
   * License as published by the Free Software Foundation; either
   * version 2.1 of the License, or (at your option) any later version.
   *
   * This library is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with this library; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
   */
  
  #ifndef UBJSON_INTERNAL_H
  #define UBJSON_INTERNAL_H
  
  /* compare http://ubjson.org/type-reference/ */
  
  #ifdef __cplusplus
  extern "C" {
  #endif
  
  typedef enum {
      UBJSON_MARKER_NULL         = 'Z',
      UBJSON_MARKER_NOOP         = 'N',
  
      UBJSON_MARKER_TRUE         = 'T',
      UBJSON_MARKER_FALSE        = 'F',
  
      UBJSON_MARKER_INT8         = 'i',
      UBJSON_MARKER_UINT8        = 'U',
      UBJSON_MARKER_INT16        = 'I',
      UBJSON_MARKER_INT32        = 'l',
      UBJSON_MARKER_INT64        = 'L',
  
      UBJSON_MARKER_FLOAT32      = 'd',
      UBJSON_MARKER_FLOAT64      = 'D',
      UBJSON_MARKER_HP_NUMBER    = 'H',
  
      UBJSON_MARKER_CHAR         = 'C',
      UBJSON_MARKER_STRING       = 'S',
  
      UBJSON_MARKER_ARRAY_START  = '[',
      UBJSON_MARKER_ARRAY_END    = ']',
  
      UBJSON_MARKER_OBJECT_START = '{',
      UBJSON_MARKER_OBJECT_END   = '}',
  
      UBJSON_MARKER_COUNT        = '#',
      UBJSON_MARKER_TYPE         = '$',
  } ubjson_marker_t;
  
  #ifdef __cplusplus
  }
  #endif
  
  #endif /* UBJSON_INTERNAL_H */