-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.c
More file actions
28 lines (26 loc) · 1.18 KB
/
info.c
File metadata and controls
28 lines (26 loc) · 1.18 KB
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
#include "geo.h"
#include <stdio.h>
/**
* Print Info
**/
void printHeader(void)
{
printf("\n");
printf(" ************************************************\n");
printf(" * Source Code *\n");
printf(" * written by *\n");
printf(" * Wim Robert Cardoen, PhD *\n");
printf(" * Center for High Performance Computing *\n");
printf(" * University of Utah *\n");
printf(" * 155 S 1452 E. Rm 420 *\n");
printf(" * Salt Lake City *\n");
printf(" * UT, 84105 *\n");
printf(" * USA *\n");
printf(" * *\n");
printf(" * Ref: *\n");
printf(" * Morton E O'Kelly & Wook Lee *\n");
printf(" * Env. & Planning A, 37, p. 2233-2252 (2005) *\n");
printf(" * *\n");
printf(" ************************************************\n");
return;
}