mirror of
https://github.com/MariaDB/server.git
synced 2026-04-20 15:25:33 +02:00
only use "public" types in plugin API
include/plugin.h: only use "public" types in plugin API: s/uint/unsigned int/ or s/uint/int/ s/bool/char/ s/byte/char/ s/CHARSET_INFO */struct charset_info_st */
This commit is contained in:
parent
ebf577974e
commit
048754ff46
3 changed files with 23 additions and 24 deletions
|
|
@ -13,9 +13,8 @@
|
|||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
||||
|
||||
#include <my_global.h>
|
||||
#include <m_string.h>
|
||||
#include <m_ctype.h>
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#include <plugin.h>
|
||||
|
||||
long number_of_calls= 0; /* for SHOW STATUS, see below */
|
||||
|
|
@ -181,7 +180,7 @@ int simple_parser_parse(MYSQL_FTPARSER_PARAM *param)
|
|||
add_word(param, start, end - start);
|
||||
break;
|
||||
}
|
||||
else if (my_isspace(param->cs, *end))
|
||||
else if (isspace(*end))
|
||||
{
|
||||
if (end > start)
|
||||
add_word(param, start, end - start);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue