| 690 | } |
| 691 | |
| 692 | s32 SmallStringBase::find(char c, u32 offset) const |
| 693 | { |
| 694 | if (m_length == 0) |
| 695 | return -1; |
| 696 | |
| 697 | pxAssert(offset <= m_length); |
| 698 | const char* at = std::strchr(m_buffer + offset, c); |
| 699 | return at ? static_cast<s32>(at - m_buffer) : -1; |
| 700 | } |
| 701 | |
| 702 | s32 SmallStringBase::rfind(char c, u32 offset) const |
| 703 | { |
no outgoing calls