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