/usr/include/srchilite/substfun.h is in libsource-highlight-dev 3.1.6-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /**
* C++ function: substfun.h
*
* Description: substitutes a string to a $var into a text.
*
* Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2005
* Copyright: See COPYING file that comes with this distribution
*/
#ifndef _SUBSTFUN_H_
#define _SUBSTFUN_H_
#include <boost/regex.hpp>
#include <string>
namespace srchilite {
std::string subst(const boost::regex &e, const std::string &s, const std::string &sub);
}
#endif /*_SUBSTFUN_H_*/
|