Sha256: dcb489ab41335633c77b8ceebdcf1d53b2e502eaf8f51b4dcec4d830eebf4b31
Contents?: true
Size: 606 Bytes
Versions: 10
Compression:
Stored size: 606 Bytes
Contents
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * trie-private.h - Private utilities for trie implementation * Created: 2007-08-25 * Author: Theppitak Karoonboonyanan <thep@linux.thai.net> */ #ifndef __TRIE_PRIVATE_H #define __TRIE_PRIVATE_H #include "typedefs.h" /** * @file trie-private.h * @brief Private utilities for trie implementation */ /** * @brief Minimum value macro */ #define MIN_VAL(a,b) ((a)<(b)?(a):(b)) /** * @brief Maximum value macro */ #define MAX_VAL(a,b) ((a)>(b)?(a):(b)) #endif /* __TRIE_PRIVATE_H */ /* vi:ts=4:ai:expandtab */
Version data entries
10 entries across 10 versions & 4 rubygems