Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findTermination (0.09 sec)

  1. src/main/java/jcifs/util/Strings.java

            }
        }
    
    
        /**
         * @param buffer
         * @param bufferIndex
         * @param maxLen
         * @return position of terminating null byte
         */
        public static int findTermination ( byte[] buffer, int bufferIndex, int maxLen ) {
            int len = 0;
            while ( buffer[ bufferIndex + len ] != (byte) 0x00 ) {
                len++;
                if ( len > maxLen ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top