| 3568 | } |
| 3569 | |
| 3570 | char* mecab_node_t_surface_get(mecab_node_t *n) { |
| 3571 | char *s = new char [n->length + 1]; |
| 3572 | memcpy (s, n->surface, n->length); |
| 3573 | s[n->length] = '\0'; |
| 3574 | return s; |
| 3575 | } |
| 3576 | |
| 3577 | |
| 3578 | SWIGINTERN swig_type_info* |
no outgoing calls
no test coverage detected