File: int_str_table.cc

package info (click to toggle)
libcuckoo 0.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,036 kB
  • sloc: cpp: 16,538; ansic: 72; python: 34; sh: 15; makefile: 9
file content (11 lines) | stat: -rw-r--r-- 467 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
// Include the header file with "C" linkage
extern "C" {
#include "int_str_table.h"
}

// Include the implementation template, which uses the constants defined in
// `int_str_table.h`.  The implementation file defines all functions under "C"
// linkage, and should be linked with the corresponding header to generate a
// linkable library. See `CMakeLists.txt` for an example of how this is done to
// create `c_hash`.
#include <libcuckoo-c/cuckoo_table_template.cc>