Crate dyld_trie

Crate dyld_trie 

Source
Expand description

A little no_std library for parsing Dyld trie.

This library provides two functions:

  1. walk used for “walking” the trie (i.e. finding a terminal for a symbol);
  2. iter used for iterating the trie.

Structs§

InvalidTrieError
An error returned when a parsed trie has invalid format.
TrieIter
An iterator over encoded Mach-O trie.

Functions§

iter
Returns an iterator over the entries of a Dyld trie.
walk
Walks trie searching for a symbol. When found returns the associated terminal.