blob: b3b2496898d6c3d1e80bfd6b1a6950246cf318d9 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef APT_PRIVATE_UTILS_H
#define APT_PRIVATE_UTILS_H
#include <string>
bool DisplayFileInPager(std::string const &filename);
bool EditFileInSensibleEditor(std::string const &filename);
#endif
|