-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcopyright.c
executable file
·28 lines (27 loc) · 1.62 KB
/
copyright.c
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
/***************************************************************************
copyright.c - prints copyright
-------------------
begin : Sat July 6 12:01:02 GMT 2002
copyright : (C) 1994--2012 by Gwyndaf Evans
email : gwyndaf@gwyndafevans.co.uk
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <stdio.h>
#include "chooch.h"
void copyright()
{
(void)fprintf( stderr, "==================================================\n");
(void)fprintf( stderr, " chooch-5.0.9 \n");
(void)fprintf( stderr, " by Gwyndaf Evans Copyright (C) 1994--2013 \n");
(void)fprintf( stderr, " gwyndaf@gwyndafevans.co.uk\n\n" );
(void)fprintf( stderr, " G. Evans & R. F. Pettifer (2001)\n");
(void)fprintf( stderr, " J. Appl. Cryst. 34, 82-86.\n");
(void)fprintf( stderr, "==================================================\n\n");
}