Add missing permission notice in each source file
[babeltrace.git] / include / babeltrace / types.h
index cee6c5a3c4ef2995e17d00d9459488225b5e5632..b42ba03e066ef65cd7b18d4f0d8fed5e0f82a345 100644 (file)
@@ -6,7 +6,9 @@
  *
  * Type Header
  *
- * Copyright 2010, 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
+ *
+ * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
  *
  * The above copyright notice and this permission notice shall be included in
  * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
  */
 
 #include <babeltrace/align.h>
 #include <babeltrace/list.h>
+#include <babeltrace/ctf/events.h>
 #include <stdbool.h>
 #include <stdint.h>
 #include <limits.h>
 /* Preallocate this many fields for structures */
 #define DEFAULT_NR_STRUCT_FIELDS 8
 
-/*
- * Always update stream_pos with move_pos and init_pos.
- */
-struct stream_pos {
-       char *base;             /* Base address */
-       size_t offset;          /* Offset from base, in bits */
-       int dummy;              /* Dummy position, for length calculation */
-};
-
-static inline
-void init_pos(struct stream_pos *pos, char *base)
-{
-       pos->base = base;       /* initial base, page-aligned */
-       pos->offset = 0;
-       pos->dummy = false;
-}
-
-/*
- * move_pos - move position of a relative bit offset
- *
- * TODO: allow larger files by updating base too.
- */
-static inline
-void move_pos(struct stream_pos *pos, size_t offset)
-{
-       pos->offset = pos->offset + offset;
-}
-
-/*
- * align_pos - align position on a bit offset (> 0)
- *
- * TODO: allow larger files by updating base too.
- */
-static inline
-void align_pos(struct stream_pos *pos, size_t offset)
-{
-       pos->offset += offset_align(pos->offset, offset);
-}
-
-static inline
-void copy_pos(struct stream_pos *dest, struct stream_pos *src)
-{
-       memcpy(dest, src, sizeof(struct stream_pos));
-}
-
-static inline
-char *get_pos_addr(struct stream_pos *pos)
-{
-       /* Only makes sense to get the address after aligning on CHAR_BIT */
-       assert(!(pos->offset % CHAR_BIT));
-       return pos->base + (pos->offset / CHAR_BIT);
-}
-
+struct ctf_stream_definition;
+struct stream_pos;
 struct format;
-struct declaration;
+struct definition;
+struct ctf_clock;
 
 /* type scope */
-struct type_scope {
-       /* Hash table mapping type name GQuark to struct type */
-       GHashTable *types;
-       struct type_scope *parent_scope;
-};
-
-/* declaration scope */
 struct declaration_scope {
-       /* Hash table mapping field name GQuark to struct declaration */
-       GHashTable *declarations;
+       /* Hash table mapping type name GQuark to "struct declaration" */
+       /* Used for both typedef and typealias. */
+       GHashTable *typedef_declarations;
+       /* Hash table mapping struct name GQuark to "struct declaration_struct" */
+       GHashTable *struct_declarations;
+       /* Hash table mapping variant name GQuark to "struct declaration_variant" */
+       GHashTable *variant_declarations;
+       /* Hash table mapping enum name GQuark to "struct type_enum" */
+       GHashTable *enum_declarations;
        struct declaration_scope *parent_scope;
 };
 
-struct type {
-       GQuark name;            /* type name */
-       size_t alignment;       /* type alignment, in bits */
-       int ref;                /* number of references to the type */
+/* definition scope */
+struct definition_scope {
+       /* Hash table mapping field name GQuark to "struct definition" */
+       GHashTable *definitions;
+       struct definition_scope *parent_scope;
        /*
-        * type_free called with type ref is decremented to 0.
+        * Complete "path" leading to this definition scope.
+        * Includes dynamic scope name '.' field name '.' field name '.' ....
+        * Array of GQuark elements (which are each separated by dots).
+        * The dynamic scope name can contain dots, and is encoded into
+        * a single GQuark. Thus, scope_path[0] returns the GQuark
+        * identifying the dynamic scope.
         */
-       void (*type_free)(struct type *type);
-       struct declaration *
-               (*declaration_new)(struct type *type,
-                                  struct declaration_scope *parent_scope);
+       GArray *scope_path;     /* array of GQuark */
+};
+
+struct declaration {
+       enum ctf_type_id id;
+       size_t alignment;       /* type alignment, in bits */
+       int ref;                /* number of references to the type */
        /*
         * declaration_free called with declaration ref is decremented to 0.
         */
        void (*declaration_free)(struct declaration *declaration);
+       struct definition *
+               (*definition_new)(struct declaration *declaration,
+                                 struct definition_scope *parent_scope,
+                                 GQuark field_name, int index,
+                                 const char *root_name);
        /*
-        * Declaration copy function. Knows how to find the child declaration
-        * from the parent declaration.
+        * definition_free called with definition ref is decremented to 0.
         */
-       void (*copy)(struct stream_pos *dest, const struct format *fdest, 
-                    struct stream_pos *src, const struct format *fsrc,
-                    struct declaration *declaration);
+       void (*definition_free)(struct definition *definition);
 };
 
-struct declaration {
-       struct type *type;
-       int ref;                /* number of references to the declaration */
+struct definition {
+       struct declaration *declaration;
+       int index;              /* Position of the definition in its container */
+       GQuark name;            /* Field name in its container (or 0 if unset) */
+       int ref;                /* number of references to the definition */
+       GQuark path;
+       struct definition_scope *scope;
 };
 
+typedef int (*rw_dispatch)(struct stream_pos *pos,
+                          struct definition *definition);
+
+/* Parent of per-plugin positions */
+struct stream_pos {
+       /* read/write dispatch table. Specific to plugin used for stream. */
+       rw_dispatch *rw_table;  /* rw dispatch table */
+       int (*event_cb)(struct stream_pos *pos,
+                       struct ctf_stream_definition *stream);
+};
+
+static inline
+int generic_rw(struct stream_pos *pos, struct definition *definition)
+{
+       enum ctf_type_id dispatch_id = definition->declaration->id;
+       rw_dispatch call;
+
+       assert(pos->rw_table[dispatch_id] != NULL);
+       call = pos->rw_table[dispatch_id];
+       return call(pos, definition);
+}
+
 /*
  * Because we address in bits, bitfields end up being exactly the same as
  * integers, except that their read/write functions must be able to deal with
  * read/write non aligned on CHAR_BIT.
  */
-struct type_integer {
-       struct type p;
+struct declaration_integer {
+       struct declaration p;
        size_t len;             /* length, in bits. */
        int byte_order;         /* byte order */
        int signedness;
+       int base;               /* Base for pretty-printing: 2, 8, 10, 16 */
+       enum ctf_string_encoding encoding;
+       struct ctf_clock *clock;
 };
 
-struct declaration_integer {
-       struct declaration p;
-       struct type_integer *type;
+struct definition_integer {
+       struct definition p;
+       struct declaration_integer *declaration;
        /* Last values read */
        union {
                uint64_t _unsigned;
@@ -152,20 +153,23 @@ struct declaration_integer {
        } value;
 };
 
-struct type_float {
-       struct type p;
-       struct type_integer *sign;
-       struct type_integer *mantissa;
-       struct type_integer *exp;
+struct declaration_float {
+       struct declaration p;
+       struct declaration_integer *sign;
+       struct declaration_integer *mantissa;
+       struct declaration_integer *exp;
        int byte_order;
        /* TODO: we might want to express more info about NaN, +inf and -inf */
 };
 
-struct declaration_float {
-       struct declaration p;
-       struct type_float *type;
+struct definition_float {
+       struct definition p;
+       struct declaration_float *declaration;
+       struct definition_integer *sign;
+       struct definition_integer *mantissa;
+       struct definition_integer *exp;
        /* Last values read */
-       long double value;
+       double value;
 };
 
 /*
@@ -183,7 +187,7 @@ struct enum_range {
 };
 
 struct enum_range_to_quark {
-       struct cds_list_head node;
+       struct bt_list_head node;
        struct enum_range range;
        GQuark quark;
 };
@@ -202,135 +206,187 @@ struct enum_range_to_quark {
  */
 struct enum_table {
        GHashTable *value_to_quark_set;         /* (value, GQuark GArray) */
-       struct cds_list_head range_to_quark;    /* (range, GQuark) */
+       struct bt_list_head range_to_quark;     /* (range, GQuark) */
        GHashTable *quark_to_range_set;         /* (GQuark, range GArray) */
 };
 
-struct type_enum {
-       struct type p;
-       struct type_integer *integer_type;
+struct declaration_enum {
+       struct declaration p;
+       struct declaration_integer *integer_declaration;
        struct enum_table table;
 };
 
-struct declaration_enum {
-       struct declaration p;
-       struct declaration_integer *integer;
-       struct type_enum *type;
+struct definition_enum {
+       struct definition p;
+       struct definition_integer *integer;
+       struct declaration_enum *declaration;
        /* Last GQuark values read. Keeping a reference on the GQuark array. */
        GArray *value;
 };
 
-struct type_string {
-       struct type p;
-};
-
 struct declaration_string {
        struct declaration p;
-       struct type_string *type;
-       char *value;    /* freed at declaration_string teardown */
+       enum ctf_string_encoding encoding;
 };
 
-struct type_field {
-       GQuark name;
-       struct type *type;
+struct definition_string {
+       struct definition p;
+       struct declaration_string *declaration;
+       char *value;    /* freed at definition_string teardown */
+       size_t len, alloc_len;
 };
 
-struct field {
+struct declaration_field {
        GQuark name;
        struct declaration *declaration;
 };
 
-struct type_struct {
-       struct type p;
-       GHashTable *fields_by_name;     /* Tuples (field name, field index) */
-       struct type_scope *scope;
-       GArray *fields;                 /* Array of type_field */
-};
-
 struct declaration_struct {
        struct declaration p;
-       struct type_struct *type;
+       GHashTable *fields_by_name;     /* Tuples (field name, field index) */
        struct declaration_scope *scope;
-       GArray *fields;                 /* Array of struct field */
+       GArray *fields;                 /* Array of declaration_field */
 };
 
-struct type_variant {
-       struct type p;
+struct definition_struct {
+       struct definition p;
+       struct declaration_struct *declaration;
+       GPtrArray *fields;              /* Array of pointers to struct definition */
+};
+
+struct declaration_untagged_variant {
+       struct declaration p;
        GHashTable *fields_by_tag;      /* Tuples (field tag, field index) */
-       struct type_scope *scope;
-       GArray *fields;                 /* Array of type_field */
+       struct declaration_scope *scope;
+       GArray *fields;                 /* Array of declaration_field */
 };
 
 struct declaration_variant {
        struct declaration p;
-       struct type_variant *type;
-       struct declaration_scope *scope;
-       struct declaration *enum_tag;
-       GArray *fields;                 /* Array of struct field */
-       struct field *current_field;    /* Last field read */
+       struct declaration_untagged_variant *untagged_variant;
+       GArray *tag_name;               /* Array of GQuark */
 };
 
-struct type_array {
-       struct type p;
-       size_t len;
-       struct type *elem;
-       struct type_scope *scope;
+/* A variant needs to be tagged to be defined. */
+struct definition_variant {
+       struct definition p;
+       struct declaration_variant *declaration;
+       struct definition *enum_tag;
+       GPtrArray *fields;              /* Array of pointers to struct definition */
+       struct definition *current_field;       /* Last field read */
 };
 
 struct declaration_array {
        struct declaration p;
-       struct type_array *type;
+       size_t len;
+       struct declaration *elem;
        struct declaration_scope *scope;
-       struct field current_element;           /* struct field */
 };
 
-struct type_sequence {
-       struct type p;
-       struct type_integer *len_type;
-       struct type *elem;
-       struct type_scope *scope;
+struct definition_array {
+       struct definition p;
+       struct declaration_array *declaration;
+       GPtrArray *elems;               /* Array of pointers to struct definition */
+       GString *string;                /* String for encoded integer children */
 };
 
 struct declaration_sequence {
        struct declaration p;
-       struct type_sequence *type;
+       GArray *length_name;            /* Array of GQuark */
+       struct declaration *elem;
        struct declaration_scope *scope;
-       struct declaration_integer *len;
-       struct field current_element;           /* struct field */
 };
 
-int register_type(GQuark type_name, struct type *type,
-                 struct type_scope *scope);
-struct type *lookup_type(GQuark type_name, struct type_scope *scope);
-struct type_scope *new_type_scope(struct type_scope *parent_scope);
-void free_type_scope(struct type_scope *scope);
+struct definition_sequence {
+       struct definition p;
+       struct declaration_sequence *declaration;
+       struct definition_integer *length;
+       GPtrArray *elems;               /* Array of pointers to struct definition */
+       GString *string;                /* String for encoded integer children */
+};
 
-struct declaration *
-       lookup_declaration(GQuark field_name, struct declaration_scope *scope);
-int register_declaration(GQuark field_name, struct declaration *declaration,
+int register_declaration(GQuark declaration_name,
+                        struct declaration *declaration,
                         struct declaration_scope *scope);
+struct declaration *lookup_declaration(GQuark declaration_name,
+                               struct declaration_scope *scope);
+
+/*
+ * Type scopes also contain a separate registry for struct, variant and
+ * enum types. Those register types rather than type definitions, so
+ * that a named variant can be declared without specifying its target
+ * "choice" tag field immediately.
+ */
+int register_struct_declaration(GQuark struct_name,
+                               struct declaration_struct *struct_declaration,
+                               struct declaration_scope *scope);
+struct declaration_struct *
+       lookup_struct_declaration(GQuark struct_name,
+                                 struct declaration_scope *scope);
+int register_variant_declaration(GQuark variant_name,
+                         struct declaration_untagged_variant *untagged_variant_declaration,
+                         struct declaration_scope *scope);
+struct declaration_untagged_variant *lookup_variant_declaration(GQuark variant_name,
+                                        struct declaration_scope *scope);
+int register_enum_declaration(GQuark enum_name,
+                             struct declaration_enum *enum_declaration,
+                             struct declaration_scope *scope);
+struct declaration_enum *
+       lookup_enum_declaration(GQuark enum_name,
+                               struct declaration_scope *scope);
+
 struct declaration_scope *
        new_declaration_scope(struct declaration_scope *parent_scope);
 void free_declaration_scope(struct declaration_scope *scope);
 
-void type_ref(struct type *type);
-void type_unref(struct type *type);
+/*
+ * field_definition is for field definitions. They are registered into
+ * definition scopes.
+ */
+struct definition *
+       lookup_path_definition(GArray *cur_path,        /* array of GQuark */
+                              GArray *lookup_path,     /* array of GQuark */
+                              struct definition_scope *scope);
+int register_field_definition(GQuark field_name,
+                             struct definition *definition,
+                             struct definition_scope *scope);
+struct definition_scope *
+       new_definition_scope(struct definition_scope *parent_scope,
+                            GQuark field_name, const char *root_name);
+void free_definition_scope(struct definition_scope *scope);
+
+GQuark new_definition_path(struct definition_scope *parent_scope,
+                          GQuark field_name, const char *root_name);
+
+static inline
+int compare_definition_path(struct definition *definition, GQuark path)
+{
+       return definition->path == path;
+}
 
 void declaration_ref(struct declaration *declaration);
 void declaration_unref(struct declaration *declaration);
 
-/* Nameless types can be created by passing a NULL name */
-
-struct type_integer *integer_type_new(const char *name,
-                                     size_t len, int byte_order,
-                                     int signedness, size_t alignment);
+void definition_ref(struct definition *definition);
+void definition_unref(struct definition *definition);
+
+struct declaration_integer *integer_declaration_new(size_t len, int byte_order,
+                                 int signedness, size_t alignment,
+                                 int base, enum ctf_string_encoding encoding,
+                                 struct ctf_clock *clock);
+uint64_t get_unsigned_int(const struct definition *field);
+int64_t get_signed_int(const struct definition *field);
+int get_int_signedness(const struct definition *field);
+int get_int_byte_order(const struct definition *field);
+int get_int_base(const struct definition *field);
+size_t get_int_len(const struct definition *field);    /* in bits */
+enum ctf_string_encoding get_int_encoding(const struct definition *field);
 
 /*
  * mantissa_len is the length of the number of bytes represented by the mantissa
  * (e.g. result of DBL_MANT_DIG). It includes the leading 1.
  */
-struct type_float *float_type_new(const char *name,
-                                 size_t mantissa_len,
+struct declaration_float *float_declaration_new(size_t mantissa_len,
                                  size_t exp_len, int byte_order,
                                  size_t alignment);
 
@@ -343,87 +399,141 @@ struct type_float *float_type_new(const char *name,
  * Returns a GArray of GQuark or NULL.
  * Caller must release the GArray with g_array_unref().
  */
-GArray *enum_uint_to_quark_set(const struct type_enum *enum_type, uint64_t v);
+GArray *enum_uint_to_quark_set(const struct declaration_enum *enum_declaration,
+                              uint64_t v);
 
 /*
  * Returns a GArray of GQuark or NULL.
  * Caller must release the GArray with g_array_unref().
  */
-GArray *enum_int_to_quark_set(const struct type_enum *enum_type, uint64_t v);
+GArray *enum_int_to_quark_set(const struct declaration_enum *enum_declaration,
+                             int64_t v);
 
 /*
  * Returns a GArray of struct enum_range or NULL.
  * Callers do _not_ own the returned GArray (and therefore _don't_ need to
  * release it).
  */
-GArray *enum_quark_to_range_set(const struct type_enum *enum_type, GQuark q);
-void enum_signed_insert(struct type_enum *enum_type,
+GArray *enum_quark_to_range_set(const struct declaration_enum *enum_declaration,
+                               GQuark q);
+void enum_signed_insert(struct declaration_enum *enum_declaration,
                         int64_t start, int64_t end, GQuark q);
-void enum_unsigned_insert(struct type_enum *enum_type,
+void enum_unsigned_insert(struct declaration_enum *enum_declaration,
                          uint64_t start, uint64_t end, GQuark q);
-size_t enum_get_nr_enumerators(struct type_enum *enum_type);
-
-struct type_enum *enum_type_new(const char *name,
-                               struct type_integer *integer_type);
-
-struct type_struct *struct_type_new(const char *name,
-                                   struct type_scope *parent_scope);
-void struct_type_add_field(struct type_struct *struct_type,
-                          const char *field_name, struct type *field_type);
+size_t enum_get_nr_enumerators(struct declaration_enum *enum_declaration);
+
+struct declaration_enum *
+       enum_declaration_new(struct declaration_integer *integer_declaration);
+
+struct declaration_string *
+       string_declaration_new(enum ctf_string_encoding encoding);
+char *get_string(const struct definition *field);
+enum ctf_string_encoding get_string_encoding(const struct definition *field);
+
+struct declaration_struct *
+       struct_declaration_new(struct declaration_scope *parent_scope,
+                              uint64_t min_align);
+void struct_declaration_add_field(struct declaration_struct *struct_declaration,
+                                 const char *field_name,
+                                 struct declaration *field_declaration);
 /*
  * Returns the index of a field within a structure.
  */
-unsigned long struct_type_lookup_field_index(struct type_struct *struct_type,
-                                            GQuark field_name);
+int struct_declaration_lookup_field_index(struct declaration_struct *struct_declaration,
+                                                   GQuark field_name);
 /*
  * field returned only valid as long as the field structure is not appended to.
  */
-struct type_field *
-struct_type_get_field_from_index(struct type_struct *struct_type,
-                                unsigned long index);
-struct field *
-struct_get_field_from_index(struct declaration_struct *struct_declaration,
-                           unsigned long index);
+struct declaration_field *
+struct_declaration_get_field_from_index(struct declaration_struct *struct_declaration,
+                                       int index);
+struct definition *
+struct_definition_get_field_from_index(struct definition_struct *struct_definition,
+                                      int index);
+int struct_rw(struct stream_pos *pos, struct definition *definition);
+uint64_t struct_declaration_len(struct declaration_struct *struct_declaration);
 
 /*
  * The tag enumeration is validated to ensure that it contains only mappings
  * from numeric values to a single tag. Overlapping tag value ranges are
  * therefore forbidden.
  */
-struct type_variant *variant_type_new(const char *name,
-                                     struct type_scope *parent_scope);
-void variant_type_add_field(struct type_variant *variant_type,
-                           const char *tag_name, struct type *tag_type);
-struct type_field *
-variant_type_get_field_from_tag(struct type_variant *variant_type, GQuark tag);
+struct declaration_untagged_variant *untagged_variant_declaration_new(
+               struct declaration_scope *parent_scope);
+struct declaration_variant *variant_declaration_new(struct declaration_untagged_variant *untagged_variant,
+               const char *tag);
+
+void untagged_variant_declaration_add_field(struct declaration_untagged_variant *untagged_variant_declaration,
+               const char *field_name,
+               struct declaration *field_declaration);
+struct declaration_field *
+       untagged_variant_declaration_get_field_from_tag(struct declaration_untagged_variant *untagged_variant_declaration,
+               GQuark tag);
 /*
  * Returns 0 on success, -EPERM on error.
  */
-int variant_declaration_set_tag(struct declaration_variant *variant,
-                               struct declaration *enum_tag);
+int variant_definition_set_tag(struct definition_variant *variant,
+                              struct definition *enum_tag);
 /*
  * Returns the field selected by the current tag value.
  * field returned only valid as long as the variant structure is not appended
  * to.
  */
-struct field *
-variant_get_current_field(struct declaration_variant *variant);
+struct definition *variant_get_current_field(struct definition_variant *variant);
+int variant_rw(struct stream_pos *pos, struct definition *definition);
+
+/*
+ * elem_declaration passed as parameter now belongs to the array. No
+ * need to free it explicitly. "len" is the number of elements in the
+ * array.
+ */
+struct declaration_array *
+       array_declaration_new(size_t len, struct declaration *elem_declaration,
+               struct declaration_scope *parent_scope);
+uint64_t array_len(struct definition_array *array);
+struct definition *array_index(struct definition_array *array, uint64_t i);
+int array_rw(struct stream_pos *pos, struct definition *definition);
+GString *get_char_array(const struct definition *field);
+int get_array_len(const struct definition *field);
+
+/*
+ * int_declaration and elem_declaration passed as parameter now belong
+ * to the sequence. No need to free them explicitly.
+ */
+struct declaration_sequence *
+       sequence_declaration_new(const char *length_name,
+               struct declaration *elem_declaration,
+               struct declaration_scope *parent_scope);
+uint64_t sequence_len(struct definition_sequence *sequence);
+struct definition *sequence_index(struct definition_sequence *sequence, uint64_t i);
+int sequence_rw(struct stream_pos *pos, struct definition *definition);
 
 /*
- * elem_type passed as parameter now belongs to the array. No need to free it
- * explicitly. "len" is the number of elements in the array.
+ * in: path (dot separated), out: q (GArray of GQuark)
  */
-struct type_array *array_type_new(const char *name,
-                                 size_t len, struct type *elem_type,
-                                 struct type_scope *parent_scope);
+void append_scope_path(const char *path, GArray *q);
 
 /*
- * int_type and elem_type passed as parameter now belong to the sequence. No
- * need to free them explicitly.
+ * Lookup helpers.
  */
-struct type_sequence *sequence_type_new(const char *name,
-                                       struct type_integer *len_type, 
-                                       struct type *elem_type,
-                                       struct type_scope *parent_scope);
+struct definition *lookup_definition(const struct definition *definition,
+                                    const char *field_name);
+struct definition_integer *lookup_integer(const struct definition *definition,
+                                         const char *field_name,
+                                         int signedness);
+struct definition_enum *lookup_enum(const struct definition *definition,
+                                   const char *field_name,
+                                   int signedness);
+struct definition *lookup_variant(const struct definition *definition,
+                                 const char *field_name);
+
+static inline
+const char *rem_(const char *str)
+{
+       if (str[0] == '_')
+               return &str[1];
+       else
+               return str;
+}
 
 #endif /* _BABELTRACE_TYPES_H */
This page took 0.03074 seconds and 4 git commands to generate.