pub unsafe extern "C" fn getInstalledLanguageList() -> TidyIterator
Expand description

Initiates an iterator for a list of Tidy’s installed languages. This iterator allows you to iterate through this list. In order to iterate through the list, initiate the iterator with this function, and then use use getNextInstalledLanguage() to retrieve the first and subsequent strings. For example: @code{.c} TidyIterator itList = getInstalledLanguageList(); while ( itList ) { printf(“%s”, getNextInstalledLanguage( &itList )); } @endcode @result Returns a TidyIterator, which is a token used to represent the current position in a list within LibTidy.