-
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 #24 from jweinst1/develop
Adds map, = ! symbols
- Loading branch information
Showing
16 changed files
with
347 additions
and
11 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
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
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
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,31 @@ | ||
#ifndef WIND_VAL_H | ||
#define WIND_VAL_H | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include "WindType.h" | ||
|
||
// Header that handles transformation of binary objects for mapping, | ||
// filtering, reducing, copying, and more. | ||
// Also provides utilities for moving WindType pointers | ||
// Uses mostly pure unsigned char* buffers | ||
|
||
//prints a single wind value from bytes | ||
int WindVal_print(unsigned char* item); | ||
|
||
// Copies <amnt> wind values from src to destination. | ||
// Assumes sufficient space. | ||
int WindVal_copy(unsigned char** dest, unsigned char** src, int amnt); | ||
|
||
// Applies not operation to binary item. | ||
// Accepts a double bytes pointer so it can be moved. | ||
int WindVal_apply_not(unsigned char* item); | ||
|
||
// Here inst is the load buffers loaded instructions. | ||
int WindVal_apply_assign(unsigned char* item, unsigned char* inst); | ||
|
||
// Advances the pointer pointer some amount of times, according to the WindType code. | ||
int WindVal_move(unsigned char** item, int amnt); | ||
|
||
|
||
#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
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.