blob: 76045ffe7da79755fbbc84fd32ea8bcc9cc86437 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef APT_PRIVATE_CMNDLINE_H
#define APT_PRIVATE_CMNDLINE_H
#include <apt-pkg/cmndline.h>
#include <vector>
std::vector<CommandLine::Args> getCommandArgs(char const * const Program, char const * const Cmd);
#endif
|