diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-09-14T08·54+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-09-14T08·54+0200 |
commit | e07c0dcf5c128875bf8af740b2c4bc81918713c9 (patch) | |
tree | 10cbe40f35fafb3a25c0802679f6c33f72b78be6 /src/libutil/util.hh | |
parent | 2c8c103ef80378bfcfa29ae054fd878305b5e275 (diff) |
Move some .drv parsing functions out of util
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r-- | src/libutil/util.hh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 819921dfff1e..69c723ad2eae 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -334,20 +334,6 @@ bool hasPrefix(const string & s, const string & prefix); bool hasSuffix(const string & s, const string & suffix); -/* Read string `s' from stream `str'. */ -void expect(std::istream & str, const string & s); - -MakeError(FormatError, Error) - - -/* Read a C-style string from stream `str'. */ -string parseString(std::istream & str); - - -/* Utility function used to parse legacy ATerms. */ -bool endOfList(std::istream & str); - - /* Escape a string that contains octal-encoded escape codes such as used in /etc/fstab and /proc/mounts (e.g. "foo\040bar" decodes to "foo bar"). */ |