-
Notifications
You must be signed in to change notification settings - Fork 65
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 #895 from cspiegel/sync-jacl
Sync with upstream JACL
- Loading branch information
Showing
23 changed files
with
5,383 additions
and
5,359 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* parser.h --- Parsing of player's commands | ||
* Created by C.W. Betts on 1/7/22. | ||
* (C) 2022 Stuart Allen, distribute and use | ||
* according to GNU GPL, see file COPYING for details. | ||
*/ | ||
|
||
#ifndef encapsulate_h | ||
#define encapsulate_h | ||
|
||
extern char text_buffer[]; | ||
extern const char *word[]; | ||
extern int noun[]; | ||
extern int quoted[]; | ||
extern int percented[]; | ||
extern int wp; | ||
|
||
extern char function_name[]; | ||
extern char temp_buffer[]; | ||
extern char error_buffer[]; | ||
extern char proxy_buffer[]; | ||
|
||
#endif /* encapsulate_h */ |
Oops, something went wrong.