summaryrefslogtreecommitdiff
path: root/include/asterisk/ael_structs.h
diff options
context:
space:
mode:
authorSean Bright <sean.bright@gmail.com>2017-12-22 09:14:07 -0500
committerSean Bright <sean.bright@gmail.com>2017-12-22 09:14:07 -0500
commitce3d56920b15facbb64b3caf0d823a3f57c0dded (patch)
tree0ea4a13885afb281237b3747e85eb6315863ae0a /include/asterisk/ael_structs.h
parent35a2e09c655f26067db0f51837704886d6ffff78 (diff)
Remove as much trailing whitespace as possible.
Change-Id: I873c1c6d00f447269bd841494459efccdd2c19c0
Diffstat (limited to 'include/asterisk/ael_structs.h')
-rw-r--r--include/asterisk/ael_structs.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/asterisk/ael_structs.h b/include/asterisk/ael_structs.h
index 592439346..205249b79 100644
--- a/include/asterisk/ael_structs.h
+++ b/include/asterisk/ael_structs.h
@@ -63,7 +63,7 @@ pval *linku1(pval *head, pval *tail);
void ael2_print(char *fname, pval *tree);
struct pval *ael2_parse(char *fname, int *errs); /* in ael.flex */
void destroy_pval(pval *item);
-
+
extern char *prev_word; /* in ael.flex */
#ifndef YY_TYPEDEF_YY_SCANNER_T
@@ -80,7 +80,7 @@ struct parse_io
};
/* for CODE GENERATION */
-
+
typedef enum { AEL_APPCALL, AEL_CONTROL1, AEL_FOR_CONTROL, AEL_IF_CONTROL, AEL_IFTIME_CONTROL, AEL_RAND_CONTROL, AEL_LABEL, AEL_RETURN } ael_priority_type;
@@ -88,13 +88,13 @@ struct ael_priority
{
int priority_num;
ael_priority_type type;
-
+
char *app;
char *appargs;
-
+
struct pval *origin;
struct ael_extension *exten;
-
+
struct ael_priority *goto_true;
struct ael_priority *goto_false;
struct ael_priority *next;
@@ -109,9 +109,9 @@ struct ael_extension
int is_switch;
int has_switch; /* set if a switch exists in the extension */
int checked_switch; /* set if we checked for a switch in the extension -- so we don't have to do it again */
-
+
struct ast_context *context;
-
+
struct ael_priority *plist;
struct ael_priority *plist_last;
struct ael_extension *next_exten;