1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
2011-07-27 07:17:02 -07:00
|
|
|
/* OCaml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
1995-05-09 02:36:12 -07:00
|
|
|
char buffer[27];
|
|
|
|
|
|
|
|
#ifdef reverse
|
|
|
|
#define cpy(s1,s2,n) copy(s2,s1,n)
|
|
|
|
#else
|
|
|
|
#define cpy copy
|
|
|
|
#endif
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
int main(int argc, char ** argv)
|
1995-05-09 02:36:12 -07:00
|
|
|
{
|
|
|
|
cpy("abcdefghijklmnopqrstuvwxyz", buffer, 27);
|
|
|
|
if (strcmp(buffer, "abcdefghijklmnopqrstuvwxyz") != 0) exit(1);
|
|
|
|
cpy(buffer, buffer+3, 26-3);
|
|
|
|
if (strcmp(buffer, "abcabcdefghijklmnopqrstuvw") != 0) exit(1);
|
|
|
|
cpy("abcdefghijklmnopqrstuvwxyz", buffer, 27);
|
|
|
|
cpy(buffer+3, buffer, 26-3);
|
|
|
|
if (strcmp(buffer, "defghijklmnopqrstuvwxyzxyz") != 0) exit(1);
|
|
|
|
exit(0);
|
|
|
|
}
|