Sha256: 3ab5f12df928cd26b2832c9ae2aa56c56ad4d0f3a13cdb4bd4c0d6d8b1803a12
Contents?: true
Size: 256 Bytes
Versions: 5
Compression:
Stored size: 256 Bytes
Contents
#ifndef DISTANCE_H #define DISTANCE_H 1 typedef struct{ double weight, threshold; char ignore_case, adj_table; } Option; double distance(char *s1, int s1_byte_len, char *s2, int s2_byte_len, Option opt); Option option_new(); #endif /* DISTANCE_H */
Version data entries
5 entries across 5 versions & 1 rubygems