|
a/src/utils/smallut.cpp |
|
b/src/utils/smallut.cpp |
|
... |
|
... |
14 |
* Free Software Foundation, Inc.,
|
14 |
* Free Software Foundation, Inc.,
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
16 |
*/
|
16 |
*/
|
17 |
|
17 |
|
18 |
#ifndef TEST_SMALLUT
|
18 |
#ifndef TEST_SMALLUT
|
19 |
#ifdef HAVE_CONFIG_H
|
|
|
20 |
#include "autoconfig.h"
|
19 |
#include "autoconfig.h"
|
21 |
#endif
|
20 |
|
22 |
#include <stdio.h>
|
21 |
#include <stdio.h>
|
23 |
#include <stdlib.h>
|
22 |
#include <stdlib.h>
|
24 |
#include <time.h>
|
23 |
#include <time.h>
|
25 |
#include <ctype.h>
|
24 |
#include <ctype.h>
|
26 |
#include <unistd.h>
|
25 |
#include <unistd.h>
|
|
... |
|
... |
32 |
#include <math.h>
|
31 |
#include <math.h>
|
33 |
|
32 |
|
34 |
#include <string>
|
33 |
#include <string>
|
35 |
#include <iostream>
|
34 |
#include <iostream>
|
36 |
#include <list>
|
35 |
#include <list>
|
37 |
#include "unordered_defs.h"
|
36 |
#include UNORDERED_MAP_INCLUDE
|
38 |
using namespace std;
|
37 |
#include UNORDERED_SET_INCLUDE
|
39 |
|
38 |
|
40 |
#include "smallut.h"
|
39 |
#include "smallut.h"
|
41 |
#include "utf8iter.h"
|
40 |
#include "utf8iter.h"
|
42 |
#include "hldata.h"
|
41 |
#include "hldata.h"
|
43 |
#include "cstr.h"
|
42 |
#include "cstr.h"
|
|
|
43 |
|
|
|
44 |
using namespace std;
|
44 |
|
45 |
|
45 |
void map_ss_cp_noshr(const map<string,string> s, map<string,string> *d)
|
46 |
void map_ss_cp_noshr(const map<string,string> s, map<string,string> *d)
|
46 |
{
|
47 |
{
|
47 |
for (map<string,string>::const_iterator it= s.begin();
|
48 |
for (map<string,string>::const_iterator it= s.begin();
|
48 |
it != s.end(); it++) {
|
49 |
it != s.end(); it++) {
|