File: utils.h

package info (click to toggle)
mpdas 0.4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 188 kB
  • sloc: cpp: 1,455; makefile: 34
file content (10 lines) | stat: -rw-r--r-- 215 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#ifndef _UTILS_H
#define _UTILS_H

bool fileexists(const char* file);
void iprintf(const char* fmt, ...);
void eprintf(const char* fmt, ...);
std::string md5sum(const char* fmt, ...);
std::string timestr();

#endif