mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-07-12 07:06:35 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
19 lines
479 B
C
19 lines
479 B
C
/* eval.h header file for eval.c
|
|
*
|
|
* The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
|
* Julian Hall. All rights reserved. The software is
|
|
* redistributable under the licence given in the file "Licence"
|
|
* distributed in the NASM archive.
|
|
*/
|
|
|
|
#ifndef NASM_EVAL_H
|
|
#define NASM_EVAL_H
|
|
|
|
/*
|
|
* The evaluator itself.
|
|
*/
|
|
yasm_expr *nasm_evaluate (scanner sc, void *scprivate, struct tokenval *tv,
|
|
int critical, efunc report_error);
|
|
|
|
#endif
|