| 216 | |
| 217 | |
| 218 | static inline |
| 219 | struct st_mysql_show_var SHOW_FUNC_ENTRY(const char *name, |
| 220 | mysql_show_var_func func_arg) |
| 221 | { |
| 222 | struct st_mysql_show_var tmp; |
| 223 | tmp.name= name; |
| 224 | tmp.value= (void*) func_arg; |
| 225 | tmp.type= SHOW_FUNC; |
| 226 | return tmp; |
| 227 | }; |
| 228 | |
| 229 | |
| 230 | /* |
no outgoing calls
no test coverage detected