Sha256: eb0f1a603b14edd8c54d599c5284aac3e5a0706a636fe0dafb90cf461daa00aa
Contents?: true
Size: 613 Bytes
Versions: 4
Compression:
Stored size: 613 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 <datrie/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
4 entries across 4 versions & 1 rubygems