core_internal: disable unsused function

This commit is contained in:
Hugues Delorme 2015-09-14 11:27:27 +02:00
parent 7cce53a9c5
commit 5ecb401bc0
2 changed files with 4 additions and 0 deletions

View File

@ -58,6 +58,7 @@ int gmio_eat_word(
return -1; return -1;
} }
#if 0
gmio_bool_t gmio_checked_next_chars( gmio_bool_t gmio_checked_next_chars(
gmio_string_stream_fwd_iterator_t *it, const char *str) gmio_string_stream_fwd_iterator_t *it, const char *str)
{ {
@ -72,3 +73,4 @@ gmio_bool_t gmio_checked_next_chars(
return same; return same;
} }
#endif

View File

@ -96,12 +96,14 @@ GMIO_INLINE void gmio_copy_spaces(
int gmio_eat_word( int gmio_eat_word(
gmio_string_stream_fwd_iterator_t* it, gmio_string_buffer_t* buffer); gmio_string_stream_fwd_iterator_t* it, gmio_string_buffer_t* buffer);
#if 0
/*! Iterate over stream while it matches input string \p str /*! Iterate over stream while it matches input string \p str
* *
* Returns GMIO_TRUE if \p str was fully matched * Returns GMIO_TRUE if \p str was fully matched
*/ */
gmio_bool_t gmio_checked_next_chars( gmio_bool_t gmio_checked_next_chars(
gmio_string_stream_fwd_iterator_t* it, const char* str); gmio_string_stream_fwd_iterator_t* it, const char* str);
#endif
/*! Converts the string pointed to by \p str to gmio_float32_t representation /*! Converts the string pointed to by \p str to gmio_float32_t representation
* *