wireshark/epan/dfilter/sttype-integer.c

41 lines
672 B
C

/*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 2001 Gerald Combs
*
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include "ftypes/ftypes.h"
#include "syntax-tree.h"
void
sttype_register_integer(void)
{
static sttype_t integer_type = {
STTYPE_INTEGER,
"INTEGER",
NULL,
NULL,
NULL
};
sttype_register(&integer_type);
}
/*
* Editor modelines - https://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 8
* tab-width: 8
* indent-tabs-mode: t
* End:
*
* vi: set shiftwidth=8 tabstop=8 noexpandtab:
* :indentSize=8:tabSize=8:noTabs=false:
*/