Blame |
Last modification |
View Log
| RSS feed
#ifndef basicstr
#define basicstr
/* copy of possibly overlapping strings, to replace strcpy which is not guanranteed in this case
and indeed produces errors particularly on 64 bits computers */
void ovlstrcpy(char *dest, char *src)
{
}
#endif /* basicstr */