xiaoxiang781216 commented on code in PR #1654: URL: https://github.com/apache/nuttx-apps/pull/1654#discussion_r1144214107
########## nshlib/nsh.h: ########## @@ -715,6 +715,25 @@ struct nsh_parser_s #endif }; +#ifdef CONFIG_NSH_ALIAS +struct nsh_alias_s +{ + FAR struct nsh_alias_s *next; /* Single link list for traversing */ + FAR char *name; /* Name of the alias */ + FAR char *value; /* Value behind the name */ + union + { + struct + { + uint8_t exp : 1; /* Already expanded ? */ Review Comment: OK, understand. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org