1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 06:05:42 +02:00

php: sort functions by topic, remove unused API functions, fix compiler warning

Functions removed (not in scripting API):

- weechat_string_replace
- weechat_hdata_get_var
- weechat_hdata_get_var_type
This commit is contained in:
Sébastien Helleu
2017-09-04 21:00:53 +02:00
parent e317a6856c
commit 28811c7ebd
4 changed files with 4326 additions and 3727 deletions
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+3 -1
View File
@@ -1,5 +1,6 @@
/*
* Copyright (C) 2006-2017 Adam Saponara <as@php.net>
* Copyright (C) 2017 Sébastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
*
@@ -44,7 +45,8 @@ extern struct t_plugin_script *php_current_script;
extern struct t_plugin_script *php_registered_script;
extern const char *php_current_script_filename;
extern void weechat_php_hashtable_to_array (struct t_hashtable *hashtable, zval *arr);
extern void weechat_php_hashtable_to_array (struct t_hashtable *hashtable,
zval *arr);
extern struct t_hashtable *weechat_php_array_to_hashtable (zval* arr,
int size,
const char *type_keys,