fw4spl
forbidtoken_nodigraphs.cpp
1 #include <stdio.h>
2 
3 #ifndef BUFSIZE
4  #define BUFSIZE 512
5 #endif
6 
7 void copy(char d< :: >, const char s< :: >, int len)
8 {
9  while (len-- >= 0)
10  {
11  d< :len: > = s;
12  }
13 }