Skip to content

Commit

Permalink
utility.h: indent a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Jan 18, 2024
1 parent 13668cf commit 558b090
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/utility.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,20 @@ typedef vector<string> StringVector;
//! \tparam in string to split
//! \tparam out vector of strings that will contain the result
//! \tparam delimiter delimiter
void
split(const string &in, StringVector &out, char delimiter);
void split(const string &in, StringVector &out, char delimiter);

//! TODO document
void
ReadRdConf(const string &path, StringVector &dirs);
void ReadRdConf(const string &path, StringVector &dirs);

//! TODO document
bool
ReadLdConf(const string &path, StringVector &dirs, int maxDepth);
bool ReadLdConf(const string &path, StringVector &dirs, int maxDepth);

//! \brief Test for a regular file
//!
//! \tparam path file path
//!
//! \return \a true if \a path is a regular file, \a false otherwise
bool
IsRegularFile(const string &path);
bool IsRegularFile(const string &path);

// vim: sw=2 ts=2 sts=2 et cc=72 tw=70
// End of file.

0 comments on commit 558b090

Please sign in to comment.