Skip to content

Commit

Permalink
Added standard header on most source files.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 10, 2021
1 parent fe6b73f commit 4ab2263
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 2 deletions.
6 changes: 6 additions & 0 deletions afl-mojodds.c
@@ -1,3 +1,9 @@
/**
* MojoDDS; tools for dealing with DDS files.
*
* Please see the file LICENSE.txt in the source's root directory.
*/

#include <assert.h>
#include <errno.h>
#include <stdbool.h>
Expand Down
6 changes: 6 additions & 0 deletions ddsinfo.c
@@ -1,3 +1,9 @@
/**
* MojoDDS; tools for dealing with DDS files.
*
* Please see the file LICENSE.txt in the source's root directory.
*/

#include <errno.h>
#include <stdbool.h>
#include <stdint.h>
Expand Down
6 changes: 6 additions & 0 deletions glddstest.c
@@ -1,3 +1,9 @@
/**
* MojoDDS; tools for dealing with DDS files.
*
* Please see the file LICENSE.txt in the source's root directory.
*/

#define _GNU_SOURCE

#include <assert.h>
Expand Down
2 changes: 0 additions & 2 deletions mojodds.c
Expand Up @@ -2,8 +2,6 @@
* MojoDDS; tools for dealing with DDS files.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/

// Specs on DDS format: http://msdn.microsoft.com/en-us/library/bb943991.aspx/
Expand Down
6 changes: 6 additions & 0 deletions mojodds.h
@@ -1,3 +1,9 @@
/**
* MojoDDS; tools for dealing with DDS files.
*
* Please see the file LICENSE.txt in the source's root directory.
*/

#ifndef _INCL_MOJODDS_H_
#define _INCL_MOJODDS_H_

Expand Down

0 comments on commit 4ab2263

Please sign in to comment.