File: wtest.cpp

package info (click to toggle)
vfu 5.09-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,552 kB
  • sloc: cpp: 16,739; ansic: 2,605; perl: 678; makefile: 349; sh: 75
file content (667 lines) | stat: -rw-r--r-- 17,844 bytes parent folder | download
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
/****************************************************************************
 #
 #  VSTRING Library
 #
 #  Copyright (c) 1996-2023 Vladi Belperchinov-Shabanski "Cade" 
 #  http://cade.noxrun.com/  <cade@noxrun.com> <cade@bis.bg> <cade@cpan.org>
 #
 #  Distributed under the GPL license, you should receive copy of GPLv2!
 #
 #  SEE 'README', 'LICENSE' OR 'COPYING' FILE FOR LICENSE AND OTHER DETAILS!
 #
 #  VSTRING library provides wide set of string manipulation features
 #  including dynamic string object that can be freely exchanged with
 #  standard char* (or wchar_t*) type, so there is no need to change 
 #  function calls nor the implementation when you change from 
 #  char* to VString (and from wchar_t* to WString). 
 # 
 ***************************************************************************/

#include <stdio.h>
#include <locale.h>
#include "vstring.h"
#include "wstring.h"
#include "vstrlib.h"
#include "wstrlib.h"

typedef VString VPath;

void test1()
{
  WString str = L"Hello";
  str += L" World"; // str is `Hello World' now
  str_reverse( str ); // str is `dlroW olleH' now
  ASSERT( str == L"dlroW olleH" );
  str_low( str ); // lower case
  ASSERT( str == L"dlrow olleh" );

  wprintf( L"************************ test 1 mid: %ls\n", str.data() ); // this should print `hello world'

  WArray va = str_split( L" +", str ); // array contains `dlroW' at pos 0 and `olleH' at 1
  va.print();

  va.reverse(); // array reversed: `dlroW' at pos 1 and `olleH' at 0

  int z;
  for( z = 0; z < va.count(); z++ )
    {
    str_reverse( va[z] ); // reverses each string element
    }

  str = str_join( va, L" " ); // joins into temporary string

  wprintf( L"************************ test 1 result is: %ls\n", str.data() ); // this should print `hello world'

  ASSERT( str == L"hello world" );

  ASSERT( str_rfind( str, L'l'     ) == 9 );
  ASSERT( str_rfind( str, L'l', -3 ) == 3 );
  ASSERT( str_rfind( str, L'o',  7 ) == 7 );
  ASSERT( str_rfind( str, L'o',  6 ) == 4 );

  str = L"hello mello tello start!";

  ASSERT( str_rfind( str, L"llo"      ) == 14 );
  ASSERT( str_rfind( str, L"llo", -12 ) ==  8 );
  ASSERT( str_rfind( str, L"llo",   7 ) ==  2 );
  
  str.compact( 1 );
  str.fix();
  
  str_add_ch( str, '!' );
  str_add_ch( str, '?' );
  str_add_ch( str, '*' );
}

void test2()
{
  WArray va;
  va.push( L"hello" ); // pos 0
  va.push( L"world" ); // pos 1

  va.ins( 1, L"your" ); // pos 1 shifted

  va[1] = L"my"; // replaces `your'
  va[3] = L"!";  // set outside the size, array is extended

  WString str = va.pop(); // pops last element, str is now `!'

  str = str_join( va, L"-" ); // joins to given string

  str_tr( str, L"-", L" " ); // replaces dashes with spaces

  str_replace( str, L" my ", L" " ); // removes ` my '

  wprintf( L"************************ test 2 result is: %ls\n", str.data() ); // this should print `hello world'
  ASSERT( str == L"hello world" );
  
  WString res1;
  str_copy( res1, str, 3, 5 );
  ASSERT( res1 == L"lo wo" );

  WString res2;
  str_copy( res2, str, 8, 9 );
  ASSERT( res2 == L"rld" );
}

void test3()
{
  WTrie  tr; // hash-like
  WArray va;

  // inserting keys and values
  tr[ L"tralala" ] = L"data1";
  tr[ L"opala"   ] = L"data2";
  tr[ L"keynext" ] = L"data3";

  // inserting elements into the array
  va.push( L"this" );
  va.push( L"just" );
  va.push( L"test" );
  va.push( L"simple" );

  // adding string to the first element of the array
  va[1] += L" x2";

  // the array is converted to trie (hash) and merged into `tr'
  tr += va; // same as: tr.merge( &va );

  ASSERT( tr[ L"this" ] == L"just x2" );

  // clear the array--remove all elements
  va.undef();

  // take keys from `tr' as array and store them into va, returns count
  // i.e. i = tr.count();
  int i;
  va = tr.keys();

  wprintf( L"keys count = %d\n", va.count() );
  ASSERT( va.count() == 5 );

  // printing the array and trie data
  for( i = 0; i < va.count(); i++ )
    {
    wprintf( L"%d -> %ls (%ls)\n", i, va[i].data(), tr[ va[i] ].data() );
    }

  WArray v1;

  wprintf( L"--------------------\n" );
  v1 = tr;    // same as: v1.undef; v1.push( &tr );
  v1.print(); // print array data

  WRegexp re( L"a([0-9]+)" ); // compiling new regexp
  wprintf( L"regexp error: %ls\n", re.error_str() );

  if( re.m( L"tralala85.zz" ) ) // match against regexp
    {
    wprintf( L"sub 0 = %ls\n", re[0].data() ); // re[0] returns `a85'
    wprintf( L"sub 1 = %ls\n", re[1].data() ); // re[1] returns `85'
    ASSERT( re[0] == L"a85" );
    ASSERT( re[1] == L"85" );
    }

  WString vs;
  if( re.m( L"tralala85.", L"a(la)+" ) ) // match against regexp
    {
    wprintf( L"sub 0 = %ls\n", re[0].data() ); // `alala'
    wprintf( L"sub 1 = %ls\n", re[1].data() ); // `la'
    ASSERT( re[0] == L"alala" );
    ASSERT( re[1] == L"la"    );
    }

  wprintf( L"--------------------\n" );
  v1 = str_split( L",", L"*.tralala,opala and another   one" ); // splits on spaces
  v1.print();

  WString js1 = str_join( v1, L"---" );
  wprintf( L"joined: %ls\n", (const wchar_t*)js1 ); // join the same data back
  ASSERT( js1 == L"*.tralala---opala and another   one" );
  
  WString m1 = v1[0];
  WString m2 = v1[1];
  wprintf( L"1[%ls] 2[%ls]\n", m1.data(), m2.data() );

  wprintf( L"--------------------\n" );
  v1 = str_split( L" +", L"tralala  opala and another   one", 3 ); // splits data on spaces up to 3 elements
  v1.print();
  ASSERT( v1[2] == L"and another   one" );

//exit(1);

  wprintf( L"--------------------\n" );
  v1[1] = L"hack this one here"; // set (overwrite) element 1
  str_sleft( v1[2], 11 ); // reset element 2 to the left 11 chars only
  v1[0] = 12345; // convert integer into string
  v1.print();

  wprintf( L"--------------------\n" );
  WArray aa[3]; // array of arrays

  aa[0] = str_split( L" ", L"this is just a simple test" );
  aa[1] = str_split( L" ", L"never ending story" );
  aa[2] = str_split( L" ", L"star-wars rulez" );

  aa[0][1] = L"was"; // first array, second element, replaces `is' with `was'
  aa[2][0] = L"slackware"; // third array, first element, `star-wars' is now `slackware'

  // expands the array from 3 to 11 elements
  aa[1][10] = L"king of the hill";

  for( i = 0; i < 3; i++ )
    {
    wprintf( L"---\n");
    aa[i].print();
    }

  wprintf( L"---box test-----------------------------\n" );
  i = 20;
  while( i-- )
  {
  v1.push( L"this" );
  v1.push( L"just" );
  v1.push( L"test" );
  v1.push( L"simple" );
  }

  v1.print();
  WArray vv = v1; // this makes vv data aliased to the data of v1
  vv.print(); // actually print the v1's data which is shared right now
  vv.set( 0, L"---" ); // vv makes own copy of the array data
  vv.print(); // vv's data is no more aliased to v1's



  WRegexp re_see( L"^\\s*see\\s*=\\s*([^, \011]*)\\s*,(.*)$", L"i" );
  if( re_see.m( L"see=*.tgz,tralala" ) )
    {
    WString str;
    str = str + re_see[1] + L":" + re_see[2];
    wprintf( L"WRegexp[1+2]=[%ls]\n", str.data() );
    ASSERT( str == L"*.tgz:tralala" );
    }

  wprintf( L"************************ test 3 ends here\n" );
}

void test4()
{
  // this is regression test, please ignore it...

  int i;
  int ii;

  WArray va;
  ii = 20;
  i = ii;
  while( i-- )
    {
    va = str_split( L",", L"this is, just a simple. but fixed, nonsense test, voila :)" );
    ASSERT( va.count() == 4 );
    printf( "%d%% va count = %d\n", (100*i)/ii, va.count() );
    }

  WString set;
  WString cat;
  WString setn;
  WString catn;
  WString sete;
  WString setp;

  i = 2000;

  while( i-- )
    {
    set.set( L"this is, just a simple. but fixed, nonsense test, voila :)" );
    cat.cat( L"this is, just a simple. but fixed, nonsense test, voila :)" );
    setn.setn( L"this is, just a simple. but fixed, nonsense test, voila :)", 20 );
    catn.catn( L"this is, just a simple. but fixed, nonsense test, voila :)", 20 );

    sete = L"this is, just a simple. but fixed, nonsense test, voila :)";
    setp += L"this is, just a simple. but fixed, nonsense test, voila :)";
    }

  printf( "set  = %zd\n", str_len( set  ) );
  printf( "cat  = %zd\n", str_len( cat  ) );
  printf( "setn = %zd\n", str_len( setn ) );
  printf( "catn = %zd\n", str_len( catn ) );
  printf( "sete = %zd\n", str_len( sete ) );
  printf( "setp = %zd\n", str_len( setp ) );

  printf( "--------------------\n" );

  i = 2000;
  while( i-- )
    {
    set = L"this is, just a simple. but fixed, nonsense test, voila :)";
    setn = set;
    str_del( set, 20, 10 );
    str_ins( set, 30, L"***opa***" );
    str_del( set, 40, 100 );
    str_replace( setn, L"i", L"[I]" );
    ASSERT( set == L"this is, just a simpxed, nonse***opa***n" );
    ASSERT( str_len(set) == str_len(L"this is, just a simpxed, nonse***opa***n") );
    ASSERT( setn == L"th[I]s [I]s, just a s[I]mple. but f[I]xed, nonsense test, vo[I]la :)" );
    ASSERT( str_len(setn) == str_len(L"th[I]s [I]s, just a s[I]mple. but f[I]xed, nonsense test, vo[I]la :)") );
    }
  printf( "set  = %ls\n", set.data() );
  printf( "setn = %ls\n", setn.data() );

  printf( "---array sort-------\n" );
  va.undef();
  va = str_split( L"[, \t]+", L"this is, just a simple. but fixed, nonsense test, voila :)" );
  va.sort();
  va.print();
  printf( "--------------------\n" );
  va.sort( 1 );
  va.print();
  printf( "--------------------\n" );

}

/*
void test5()
{
  WTrie tr; // hash-like
  WArray va;

  // inserting keys and values
  tr[ "key1" ] = "data1";
  tr[ "key2" ] = "data2";
  tr[ "key3" ] = "data3";
  tr[ "key4" ] = "data4";
  tr[ "key5" ] = "data5";

  tr.print();
  
exit(1);  
  
  tr.reverse();
  tr.print();
  tr.reverse();
  tr.print();

  printf( "************************ test 5 ends here\n" );
}

void test6()
{
  WRegexp re;
  WArray va;

  re.comp( "^([^!]+)!(.+)=apquxz(.+)$" );
  int i = re.m( "abc!pqr=apquxz.ixr.zzz.ac.uk" );
  i--;
  while( i >= 0 )
    {
    va.push( re[i] );
    i--;
    }
  va.print();

  va.undef();
  va += "/this/is/samle/file.tail";
  va += "/file.tail";
  va += "/this/is/./samle/file.tail/";
  va += "/this/..../is/../samle/.file.tail";
  va += "/.file.tail";
  va += "/";

  const char* ps;

  va.reset();
  while( ( ps = va.next() ) )
    {
    printf( "------------------------------------\n" );
    printf( "file is: %ls\n", ps );
    printf( "path is: %ls\n", (const char*)str_file_path( ps ) );
    printf( "name is: %ls\n", (const char*)str_file_name( ps ) );
    printf( "ext  is: %ls\n", (const char*)str_file_ext( ps ) );
    printf( "n+ex is: %ls\n", (const char*)str_file_name_ext( ps ) );
    printf( "reduced path is: %ls\n", (const char*)str_reduce_path( ps ) );
    printf( "dot reduce sample is: %ls\n", (const char*)str_dot_reduce( ps, 10 ) );
    }

  va.fsave( "/tmp/a.aaa" );
  va.fload( "/tmp/a.aaa" );
  va.print();
}

void test7()
{
  WTrie tr; // hash-like
  WTrie tr2; // hash-like
  WArray va;

  // inserting keys and values
  tr[ "key1" ] = "data1";
  tr[ "key2" ] = "data2";
  tr[ "key3" ] = "data3";

  tr.print();
  printf( "---------------------------------1---\n" );
  tr.reverse();
  tr.print();
  printf( "---------------------------------2---\n" );
  tr.reverse();
  tr.print();
  printf( "---------------------------------3---\n" );

  tr2 = str_split( " ", "this is simple one way test" );
  tr2.print();
  printf( "---------------------------------4---\n" );

  tr2 += tr;
  tr2.print();
  printf( "---------------------------------5---\n" );

  va = tr2;
  va.print();
  printf( "---------------------------------6---\n" );
}

void test8()
{
  WString v1;
  WString v2;

  v1 = "this is simple test ";
  v1 *= 1024;

  printf( "v1 len: %d\n", str_len( v1 ) );

  v2.compact( 1 ); // makes v2 compact, i.e. it will get as much memory as it
                   // needs. otherwise it will get fixed amount of blocks

  v2 = v1; // data is shared between v1 and v2. any change to v1 or v2 will
           // detach this data and both will get own copy

  v2[0] = ' '; // this will create own data for v2

  str_tr( v2, "ti", "TI" ); // capitalize T and I

  v2 = ""; // this will free all data allocated by v2

  printf( "copy 7,6: [%ls]", (const char*)str_copy( v2, v1, 8, 6 ) );
  printf( "copy 10: [%ls]", (const char*)str_copy( v2, v1, -10 ) );

  printf( "************************ test 5 ends here\n" );
}

void test9()
{
  WArray va;
  WTrie  tr;
  
  printf( "---9---------------------------------------------------\n" );
  
  va.push( "one" );
  va.push( "two" );
  va.push( "tri" );
  va.push( "pet" );

  va.print();
  
  tr = va;
  
  tr.print();

  printf( "\n            ----\n" );

  va.push( tr );
  
  va.print();
  
  WArray va2;
  va2.push( "1" );
  va2.push( "2" );
  va2.push( "3" );
  va2.push( "4" );

  va2.unshift( "0" );
  va2.unshift( va );
  va2.push( va );

  va2.print();
  
}
*/

void print_vpath( VPath& vp )
{
  wprintf( L"pp = %ls\n", WString( vp.data() ).data() );
}

void test10()
{
  WArray va;
  WTrie  tr;
  
    wint_t x = 5;
    wchar_t name[] = L"GEEKS";
    wprintf( L"x = %d \n", x);
    wprintf( L"HELLO %ls \n", name);

  fwide( stdout, 0 );
  printf( "--- WIDE CHAR TESTS -----------------------------------\n" );

  fwide( stdout, 1 );
  
  wchar_t t[256];
  wcscpy( t, L"Това е проста проба щеш не щеш" );
  
  wprintf( L"%ls\n", L"Това е проста проба щеш не щеш" );
  
  printf( "--- test 10 ends --------------------------------------\n" );

  WString ws( "щото това е конвертиране" );
  wprintf( L"%ls\n", ws.data() );
  
  ws = "и това е пак също ковертиране";
  wprintf( L"%ls\n", ws.data() );

  VString vv = ws;
  WString ww = vv;
  ww += L" x2";
  wprintf( L"%ls\n", ww.data() );

  VPath pp = ws;
  pp = str_dot_reduce( pp.data(), 11 );
  vv = 123;
  print_vpath( vv );
  
  str_dot_reduce( ww, 16 );
}

void test11()
{

  ASSERT( sfn_match( "vf*", "vfudir"      ) == 0 );
  ASSERT( sfn_match( "vf*r", "vfudir"     ) == 0 );
  ASSERT( sfn_match( "vf*t", "vfudir"     ) != 0 );
  ASSERT( sfn_match( "vf[you]*", "vfudir" ) == 0 );

  ASSERT( sfn_match( "vf\\*d[g-k]?z", "vf*dirz" ) == 0 );
  ASSERT( sfn_match( "v*[c-e]*", "vfudirtest.txt" ) == 0 );
  ASSERT( sfn_match( "v*xt**", "vfudirtest.txt" ) == 0 );
  ASSERT( sfn_match( "v*xt**?", "vfudirtest.txt" ) != 0 );

  ASSERT( sfn_match( "vf*i*r", "vfudir"     ) == 0 );
  ASSERT( sfn_match( "vf*x*r", "vfudir"     ) != 0 );

  ASSERT( sfn_match( "vf*\\?*r", "vfutest?xdir"     ) == 0 );

  ASSERT( sfn_match( "??*", "vfutest"  ) == 0 );
  ASSERT( sfn_match( "??*", "vf"       ) == 0 );
  ASSERT( sfn_match( "??*", "v"        ) != 0 );
  ASSERT( sfn_match( "*vfu*?", "vfuz"  ) == 0 );

  ASSERT( sfn_match( "vf[^you]*", "vfudir" ) != 0 );

  ASSERT( sfn_match( "vf\\u*", "vfudir", SFN_NOESCAPE ) != 0 );
  ASSERT( sfn_match( "vf\\u*", "vf\\udir", SFN_NOESCAPE ) == 0 );

  ASSERT( sfn_match( "vf\\U*", "Vf\\udir", SFN_NOESCAPE ) != 0 );
  ASSERT( sfn_match( "vf\\U*", "Vf\\udir", SFN_NOESCAPE | SFN_CASEFOLD ) == 0 );
  ASSERT( sfn_match( "vF\\*d[g-k]?z", "Vf*dIrz", SFN_CASEFOLD ) == 0 );


  ASSERT( sfn_match( L"vf\\*d[g-k]?z", L"vf*dirz"  ) == 0 );
  ASSERT( sfn_match( L"vf*\\?*r", L"vfutest?xdir"  ) == 0 );
  ASSERT( sfn_match( L"vF\\*d[g-k]?z", L"Vf*dIrz", SFN_CASEFOLD ) == 0 );

  ASSERT( sfn_match( "*ing*", "vstring.txt"  ) == 0 );

  ASSERT( sfn_match( "*.deb", "vfu.debug"  ) != 0 );

  ASSERT( sfn_match( "*.tar.gz", "vfu-5.02.tar.gz" ) == 0 );

  ASSERT( sfn_match( "*.tar*z", "vfu-5.02.tar.xz" ) == 0 );
  ASSERT( sfn_match( "*.tar*z", "vfu-5.02_tar.xz" ) != 0 );
  ASSERT( sfn_match( "*.tar*z", "vfu-5.tar.tar.xz" ) == 0 );
  ASSERT( sfn_match( "*.tar*m*z", "vfu-5.tar.tar.xz" ) != 0 );

  ASSERT( sfn_match( "*tar*", "vfu tar tar.xz" ) == 0 );

  ASSERT( sfn_match( "vf*u*xz", "vfu tar tar.xz" ) == 0 );
  ASSERT( sfn_match( "vf*[u]*xz", "vfu tar tar.xz" ) == 0 );
  ASSERT( sfn_match( "vf*[u*xz", "vfu tar tar.xz" ) != 0 );
}

int main( void )
{
  setlocale( LC_ALL, "" );
  #if 0
  char t[256] = "123456----------------------------------------9999999999999";
  char T[256] = "123456----------------------------------------9999999999999";
  str_trim_left( t, 3 );
  printf( "%ls\n", t );

  for( long z; z < 300000000; z++ )
  {
  //str_copy( t+10, t,    0, 15 ); // check for overlapping borders, begin of str
  //str_copy( t+10, t+20, 0, 15 ); // check for overlapping borders, end   of str
  //memmove( T, t, 222 );
  //memcpy( T, t, 222 );
  //str_copy( T, t, 0, 222 ); // check for overlapping borders, begin of str
  }
  #endif

  wchar_t t[92] = L"this is simple test";
  wchar_t r[92] = L"1111111111111111111";
  str_word( t, L" ", r );
  ASSERT( wcscmp( t, L"is simple test" ) == 0 );
  ASSERT( wcscmp( r, L"this" ) == 0 );

  str_set( t, L"   opa" );
  str_cut_left( t, L" " );
  ASSERT( wcscmp( t, L"opa" ) == 0 );

  str_set( t, L"opa   " );
  str_cut_right( t, L" " );
  ASSERT( wcscmp( t, L"opa" ) == 0 );

  str_set( t, L"this is good" );
  str_ins( t, 8, L"not " );
  ASSERT( wcscmp( t, L"this is not good" ) == 0 );

  str_del( t, 8, 4 );
  ASSERT( wcscmp( t, L"this is good" ) == 0 );

  str_set( t, L"more" );
  str_mul( t, 6 );
  ASSERT( wcscmp( t, L"moremoremoremoremoremore" ) == 0 );
  WString s = L"more";
  str_mul( s, 6 );
  ASSERT( s == L"moremoremoremoremoremore" );
  ASSERT( str_len( s ) == str_len((const wchar_t*)s) );

  str_copy( t+10, t,    0, 15 ); // check for overlapping borders, begin of str
  str_copy( t+10, t+20, 0, 15 ); // check for overlapping borders, end   of str

  str_set( t, L"despicable me" );
  str_word( t, L" ", r );
  ASSERT( wcscmp( r, L"despicable" ) == 0 );
  str_word( t, L" ", r );
  ASSERT( wcscmp( r, L"me" ) == 0 );
  ASSERT( t[0] == 0 );

  #if 1
  test1();
  test2();
  test3();
  test4();
  #if 0
  test5();
  test6();
  test7();
  test8();
  test9();
  #endif
  test10();
  test11();

  #endif
  return 0;
}