* starting at the specified byte. If the character is not found, -1 is
* returned.
* <br/>
- * NOTE: This only works for single byte characters.
+ * NOTE: This only works for characters in the range 0-127.
*
* @param c The character
* @param starting The start position
* Returns the first instance of the given character in the given byte array
* between the specified start and end.
* <br/>
- * NOTE: This only works for single byte characters.
+ * NOTE: This only works for characters in the range 0-127.
*
* @param bytes The byte array to search
* @param start The point to start searching from in the byte array
* Returns the first instance of the given character in the given byte array
* between the specified start and end.
* <br/>
- * NOTE: This only works for single byte characters.
+ * NOTE: This only works for characters in the range 0-127.
*
* @param bytes The byte array to search
* @param start The point to start searching from in the byte array
* Returns the first instance of any of the given characters in the given
* byte array between the specified start and end.
* <br/>
- * NOTE: This only works for single byte characters.
+ * NOTE: This only works for characters in the range 0-127.
*
* @param bytes The byte array to search
* @param start The point to start searching from in the byte array
* character array in the specified byte array between the specified start
* and end.
* <br/>
- * NOTE: This only works for single byte characters.
+ * NOTE: This only works for characters in the range 0-127.
*
* @param bytes The byte array to search
* @param start The point to start searching from in the byte array