]>
Dogcows Code - chaz/openbox/blob - otk/util.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
9 #ifdef TIME_WITH_SYS_TIME
10 # include <sys/time.h>
12 #else // !TIME_WITH_SYS_TIME
13 # ifdef HAVE_SYS_TIME_H
14 # include <sys/time.h>
15 # else // !HAVE_SYS_TIME_H
17 # endif // HAVE_SYS_TIME_H
18 #endif // TIME_WITH_SYS_TIME
26 std::string
expandTilde(const std::string
& s
);
28 void bexec(const std::string
& command
, const std::string
& displaystring
);
30 std::string
itostring(unsigned long i
);
31 std::string
itostring(long i
);
32 inline std::string
itostring(unsigned int i
)
33 { return itostring((unsigned long) i
); }
34 inline std::string
itostring(int i
)
35 { return itostring((long) i
); }
37 void putenv(const std::string
&data
);
39 std::string
basename(const std::string
& path
);
This page took 0.03485 seconds and 4 git commands to generate.