\brief Returns true if \p string length is zero. O(1)
| 35 | /// \brief Returns true if \p string length is zero. |
| 36 | /// O(1) |
| 37 | inline bool string_empty( const char* string ){ |
| 38 | return *string == '\0'; |
| 39 | } |
| 40 | |
| 41 | /// \brief Returns true if \p string length is not zero. |
| 42 | /// O(1) |
no outgoing calls