Sha256: 426739cb01df1d3cd6893926ebadb181a43c6e5dfe7186b6d00fc61acddfdd48
Contents?: true
Size: 413 Bytes
Versions: 18
Compression:
Stored size: 413 Bytes
Contents
#ifndef _TOKEN_H_ #define _TOKEN_H_ namespace rmmseg { struct Token { Token(const char *txt, int len) :text(txt), length(len) { } // `text' may or may not be nul-terminated, its length // should be stored in the `length' field. // // if length is 0, this is an empty token const char *text; int length; }; } #endif /* _TOKEN_H_ */
Version data entries
18 entries across 18 versions & 5 rubygems