diff options
author | Mukund Sivaraman <muks@banu.com> | 2010-01-18 19:05:31 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2010-01-18 19:05:31 +0530 |
commit | edea7e37d08e3045f4e7932ed74e09b5b8dc5c5c (patch) | |
tree | 99bb68e4527f015b8834dce40e604bba4c9e8049 /src/authors.c | |
parent | f3fe3d8e79a9962aa7cd28d0e80f4991c4ab7cad (diff) |
Show authors and documenters when license is requested
Diffstat (limited to 'src/authors.c')
-rw-r--r-- | src/authors.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/authors.c b/src/authors.c new file mode 100644 index 0000000..988a160 --- /dev/null +++ b/src/authors.c @@ -0,0 +1,41 @@ + +/* NOTE: This file is auto-generated from authors.xml, do not edit it. */ + +#include "authors.h" + +static const char * const authors[] = +{ + "Andrew Stribblehill", + "David Shanks", + "Jeremy Hinegardner", + "Kim Holviala", + "Mathew Mrosko", + "Matthew Dempsky", + "Michael Adam", + "Mukund Sivaraman", + "Robert James Kaes", + "Steven Young", + NULL +}; + +static const char * const documenters[] = +{ + "Marc Silver", + "Michael Adam", + "Mukund Sivaraman", + "Robert James Kaes", + "Steven Young", + NULL +}; + +const char * const * +authors_get_authors (void) +{ + return authors; +} + +const char * const * +authors_get_documenters (void) +{ + return documenters; +} |