aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftype-none.c
blob: 1bb64a37597817671f3d54fa379361bb147068a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <ftypes-int.h>


void
ftype_register_none(void)
{

	static ftype_t none_type = {
		"FT_NONE",
		"label",
		0,
	};

	ftype_register(FT_NONE, &none_type);
}