Add URI-style escaping of filename characters.
[cumulus.git] / format.h
1 /* LBS: An LFS-inspired filesystem backup system
2  * Copyright (C) 2006  Michael Vrable
3  *
4  * Utility functions for converting various datatypes to text format (and
5  * later, for parsing them back, perhaps).
6  */
7
8 #ifndef _LBS_FORMAT_H
9 #define _LBS_FORMAT_H
10
11 #include <string>
12
13 std::string uri_encode(const std::string &in);
14
15 #endif // _LBS_TARSTORE_H