Sha256: 3699568e417bcc5e84ca660c31b5588993720d3bccee3623c2e060f65af61645
Contents?: true
Size: 1.88 KB
Versions: 6
Compression:
Stored size: 1.88 KB
Contents
/* Copyright(C) 2018 Brazil This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #pragma once #ifdef __cplusplus extern "C" { #endif typedef struct _grn_highlighter grn_highlighter; GRN_API grn_highlighter * grn_highlighter_open(grn_ctx *ctx); GRN_API grn_rc grn_highlighter_close(grn_ctx *ctx, grn_highlighter *highlighter); GRN_API grn_rc grn_highlighter_highlight(grn_ctx *ctx, grn_highlighter *highlighter, const char *text, int64_t text_length, grn_obj *output); GRN_API grn_rc grn_highlighter_set_lexicon(grn_ctx *ctx, grn_highlighter *highlighter, grn_obj *lexicon); GRN_API grn_obj * grn_highlighter_get_lexicon(grn_ctx *ctx, grn_highlighter *highlighter); GRN_API grn_rc grn_highlighter_add_keyword(grn_ctx *ctx, grn_highlighter *highlighter, const char *keyword, int64_t keyword_length); GRN_API grn_rc grn_highlighter_clear_keywords(grn_ctx *ctx, grn_highlighter *highlighter); #ifdef __cplusplus } #endif
Version data entries
6 entries across 6 versions & 1 rubygems