Changeset 113 for trunk/include


Ignore:
Timestamp:
05/04/08 14:29:02 (16 years ago)
Author:
tim
Message:

fixed some VK record parsing bugs

added more strict checking on unallocated ranges

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/range_list.h

    r106 r113  
    176176bool range_list_split_element(range_list* rl, uint32_t index, uint32_t offset);
    177177
     178
     179/* range_list_has_range():
     180 *  Determines whether or not a specified range exists contiguously within the
     181 *  range_list.
     182 *
     183 * Arguments:
     184 *  rl     -- the range_list to search
     185 *  start  -- the offset at the beginning of the range
     186 *  length -- the length of the range
     187 *
     188 * Returns:
     189 *  true if the specified range exists and is complete, false otherwise.
     190 */
     191bool range_list_has_range(range_list* rl, uint32_t start, uint32_t length);
     192
    178193#endif
Note: See TracChangeset for help on using the changeset viewer.