Switch to unified view

a/src/common/unacpp.h b/src/common/unacpp.h
...
...
18
#define _UNACPP_H_INCLUDED_
18
#define _UNACPP_H_INCLUDED_
19
/* @(#$Id: unacpp.h,v 1.4 2006-01-30 11:15:27 dockes Exp $  (C) 2004 J.F.Dockes */
19
/* @(#$Id: unacpp.h,v 1.4 2006-01-30 11:15:27 dockes Exp $  (C) 2004 J.F.Dockes */
20
20
21
#include <string>
21
#include <string>
22
22
23
#ifndef NO_NAMESPACES
24
using std::string;
25
#endif /* NO_NAMESPACES */
26
23
// A small stringified wrapper for unac.c
27
// A small stringified wrapper for unac.c
24
extern bool unacmaybefold(const std::string &in, std::string &out, 
28
extern bool unacmaybefold(const string& in, string& out, 
25
              const char *encoding, bool dofold);
29
              const char *encoding, bool dofold);
30
31
// Utility function to determine if string begins with capital
32
extern bool unaciscapital(const string& in);
33
26
#endif /* _UNACPP_H_INCLUDED_ */
34
#endif /* _UNACPP_H_INCLUDED_ */