Skip to content

Commit

Permalink
Export all grn_plugin_ APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 2, 2013
1 parent ed31dcf commit 811f5dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/groonga/plugin.h
Expand Up @@ -186,16 +186,16 @@ GRN_API const char *grn_plugin_win32_base_dir(void);
are invalid as a character, grn_plugin_charlen() returns 0. See
grn_encoding in "groonga.h" for more details of `encoding'
*/
int grn_plugin_charlen(grn_ctx *ctx, const char *str_ptr,
unsigned int str_length, grn_encoding encoding);
GRN_API int grn_plugin_charlen(grn_ctx *ctx, const char *str_ptr,
unsigned int str_length, grn_encoding encoding);

/*
grn_plugin_isspace() returns the length (#bytes) of the first character
in the string specified by `str_ptr' and `str_length' if it is a space
character. Otherwise, grn_plugin_isspace() returns 0.
*/
int grn_plugin_isspace(grn_ctx *ctx, const char *str_ptr,
unsigned int str_length, grn_encoding encoding);
GRN_API int grn_plugin_isspace(grn_ctx *ctx, const char *str_ptr,
unsigned int str_length, grn_encoding encoding);



Expand Down

0 comments on commit 811f5dc

Please sign in to comment.