Skip to content

Commit

Permalink
Merge pull request gwAdvNet2015#71 from SMonaghan/master
Browse files Browse the repository at this point in the history
Added author headers in marshal
  • Loading branch information
amygara committed Apr 29, 2015
2 parents de19695 + f8f161f commit c8f57fb
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lib/marshal/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#/************************************************
#* GW KV
#* https://github.com/gwAdvNet2015/gw-kv-store
#*
#* Copyright 2015 Pradeep Kumar, Yang Hu, Grace Liu
#*
#* This program is licensed under the MIT license.
#*
#* Makefile - Compiles marshal files
#*************************************************/

#Use the gcc compiler
CC = gcc
CFLAGS = -g -std=c99 -pedantic -Wall -g
Expand Down
10 changes: 10 additions & 0 deletions lib/marshal/marshal.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/************************************************
* GW KV
* https://github.com/gwAdvNet2015/gw-kv-store
*
* Copyright 2015 Pradeep Kumar, Yang Hu, Grace Liu
* This program is licensed under the MIT license.
*
* marshal.c - This does all the marshaling
*************************************************/

/*
* @desc: The function does the marshing. Function does all the allocation.
* It is caller's responsibility to free the memory allocated.
Expand Down
12 changes: 12 additions & 0 deletions lib/marshal/marshal.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/************************************************
* GW KV
* https://github.com/gwAdvNet2015/gw-kv-store
*
* Copyright 2015 Pradeep Kumar, Yang Hu, Grace Liu
*
* This program is licensed under the MIT license.
*
* marshal.h - defines the functions and structs
* for marshal.c
*************************************************/

#ifndef __MARSHAL_H__
#define __MARSHAL_H__

Expand Down

0 comments on commit c8f57fb

Please sign in to comment.