-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from jweinst1/develop
Readme changes, gif, save and load commands
- Loading branch information
Showing
18 changed files
with
689 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#ifndef DATA_UTIL_H | ||
#define DATA_UTIL_H | ||
|
||
#include <string.h> | ||
#include "WindType.h" | ||
|
||
// This header handles utils to copy, move, and transport data from one unsigned char* | ||
// to another | ||
|
||
// Copies data from src to dest, until src End is reached. | ||
unsigned long DataUtil_copy(unsigned char* dest, | ||
const unsigned char* src, | ||
const unsigned char* srcEnd, | ||
int* err); | ||
|
||
// Function that validates if binary wind data is properly formatted. | ||
int DataUtil_validate(const unsigned char* start, const unsigned char* end); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.