all repos — openbox @ 6b1381d69daf7c325d4a8165a8b0006d0dce85a5

openbox fork - make it a bit more like ryudo

otk/util.hh (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef __util_hh
#define __util_hh

extern "C" {
#include <X11/Xlib.h>
#include <X11/Xutil.h>
}

#include <string>
#include <vector>

namespace otk {

std::string expandTilde(const std::string& s);

void bexec(const std::string& command, const std::string& displaystring);

std::string itostring(unsigned long i);
std::string itostring(long i);
inline std::string itostring(unsigned int i)
  { return itostring((unsigned long) i); }
inline std::string itostring(int i)
  { return itostring((long) i); }

void putenv(const std::string &data);

std::string basename(const std::string& path);

}

#endif // __util_hh