| 25 | } |
| 26 | |
| 27 | nfdchar_t *NFD_PathSet_GetPath( const nfdpathset_t *pathset, size_t num ) |
| 28 | { |
| 29 | assert(pathset); |
| 30 | assert(num < pathset->count); |
| 31 | |
| 32 | return pathset->buf + pathset->indices[num]; |
| 33 | } |
| 34 | |
| 35 | void NFD_PathSet_Free( nfdpathset_t *pathset ) |
| 36 | { |