1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 16:51:15 +02:00

* Parse multi-valued options.

This commit is contained in:
Eelco Dolstra 2005-09-22 15:43:22 +00:00
parent fbedf6056e
commit 4578a490ce
5 changed files with 54 additions and 16 deletions

View file

@ -261,6 +261,10 @@ string packStrings(const Strings & strings);
Strings unpackStrings(const string & s);
/* String tokenizer. */
Strings tokenizeString(const string & s, const string & separators = " \t\n\r");
/* Convert the exit status of a child as returned by wait() into an
error string. */
string statusToString(int status);