summaryrefslogtreecommitdiff
path: root/src/upb_inlinedefs.c
blob: 71008497e3713cce3f90f5f9f0f5c216728357ae (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
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * This file, if compiled, will contain standalone (non-inlined) versions of
 * all inline functions defined in header files.  We don't generally use this
 * file since we use "static inline" for inline functions (which will put a
 * standalone version of the function in any .o file that needs it, but
 * compiling this file and dumping the object file will let us inspect how
 * inline functions are compiled, so we keep it around.
 *
 * Copyright (c) 2009 Joshua Haberman.  See LICENSE for details.
 */

#define INLINE
#include "upb_array.h"
#include "upb_context.h"
#include "upb_def.h"
#include "upb_mm.h"
#include "upb_msg.h"
#include "upb_parse.h"
#include "upb_serialize.h"
#include "upb_string.h"
#include "upb_table.h"
#include "upb_text.h"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback