blob: 80298ce55d1b10542f9b5bf258ef8059e25430a2 (
plain) (
tree)
|
|
#ifndef __COMMON_OPTS_H
#define __COMMON_OPTS_H
#include "eval.hh"
namespace nix {
/* Some common option parsing between nix-env and nix-instantiate. */
bool parseOptionArg(const string & arg, Strings::iterator & i,
const Strings::iterator & argsEnd, EvalState & state,
Bindings & autoArgs);
}
#endif /* !__COMMON_OPTS_H */
|