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