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

Version Path
middlemac-3.1.2 ext/trie/trie-private.h
middlemac-3.1.1 ext/trie/trie-private.h
fast_trie-0.5.1 ext/trie/trie-private.h
dakrone-trie-0.3.5 ext/trie/trie-private.h
tyler-trie-0.3.5 ext/trie/trie-private.h
fast_trie-0.5.0 ext/trie/trie-private.h
fast_trie-0.4.0 ext/trie/trie-private.h
fast_trie-0.3.7 ext/trie/trie-private.h
fast_trie-0.3.6 ext/trie/trie-private.h
fast_trie-0.3.5 ext/trie/trie-private.h