- make-ini-file-generator inport #!optional (key-value-sep =) (comment-delim ;)procedure
Returns a generator that reads one or more lines from the textual input port inport and returns a list of two symbols and a string: the current section name, the key, and the value. If no section names have been read, the section name is #f. When the port returns an end-of-file object, the generator returns an end-of-file object. It is an error to mutate any of the strings and lists returned.
The character key-value-sep specifies the separator between a key and the corresponding value. The character comment-delim specifies the delimiter before a comment. It is an error if either of them is whitespace or a newline.
Note that it is the user's responsibility to close the port.