Sha256: bd326c9422e3a39cc0937d67780fbde2dcf6320e3bf52a63b2b61e8036f9cab7

Contents?: true

Size: 613 Bytes

Versions: 1

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

1 entries across 1 versions & 1 rubygems

Version Path
tyler-trie-0.3.4 ext/trie/trie-private.h