home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Programming / Python2 / Python20_source / Python / getcopyright.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  418 b   |  20 lines

  1. /* Return the copyright string.  This is updated manually. */
  2.  
  3. #include "Python.h"
  4.  
  5. static char cprt[] = 
  6. "Copyright (c) 2000 BeOpen.com.\n\
  7. All Rights Reserved.\n\
  8. \n\
  9. Copyright (c) 1995-2000 Corporation for National Research Initiatives.\n\
  10. All Rights Reserved.\n\
  11. \n\
  12. Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\
  13. All Rights Reserved.";
  14.  
  15. const char *
  16. Py_GetCopyright(void)
  17. {
  18.     return cprt;
  19. }
  20.