My Project
ssht_about.c
Go to the documentation of this file.
1 // SSHT package to perform spin spherical harmonic transforms
2 // Copyright (C) 2011 Jason McEwen
3 // See LICENSE.txt for license details
4 
15 #include <stdio.h>
16 
17 int main(void) {
18 
19  printf("%s\n", "==========================================================");
20  printf("%s\n", "SSHT package to perform spin spherical harmonic transforms");
21  printf("%s\n", "By Jason McEwen, Chris Wallis, Martin Buttner, ");
22  printf("%s\n", "Boris Leistedt, and Yves Wiaux");
23 
24  printf("%s\n", "See www.jasonmcewen.org for more information.");
25  printf("%s\n", "See LICENSE.txt for license details.");
26 
27  printf("%s%s\n", "Version: ", SSHT_VERSION);
28  printf("%s%s\n", "Build: ", SSHT_BUILD);
29  printf("%s\n", "==========================================================");
30 
31  return 0;
32 
33 }
main
int main(void)
Definition: ssht_about.c:17