make-trie.h 335 B

1234567891011121314
  1. /* Copyright (C) 2008 Free Software Foundation
  2. This file is part of libgcj.
  3. This software is copyrighted work licensed under the terms of the
  4. Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
  5. details. */
  6. #include <stddef.h>
  7. extern void print_table (char *name, FILE *out);
  8. extern void enter (int key, int value);