source: umon/ports/csb740/xcmddcl.h @ 273af8f

Last change on this file since 273af8f was b987a75, checked in by Jarielle Catbagan <jcatbagan93@…>, on 06/19/15 at 21:32:43

Removed execution mode file attribute from all ASCII text files

  • Property mode set to 100644
File size: 840 bytes
Line 
1
2/* extcmddcl.h: */
3/* This file must exist even if it is empty because it is #included in the */
4/* common file cmdtbl.c.  The purpose is to keep the common comand table   */
5/* file (common/cmdtbl.c) from being corrupted with non-generic commands   */
6/* that may be target specific. */
7/* It is the declaration portion of the code that must be at the top of    */
8/* the cmdtbl[] array. */
9/* For example:
10
11extern  int dummycmd();         Function declaration.
12extern  char *dummyHelp[];      Command help array declaration.
13
14*/
15
16extern int date();
17extern char *dateHelp[];
18
19#if INCLUDE_LCD
20extern int lcd_tst();
21extern char *lcd_tstHelp[];
22#endif
23
24//extern int i2c();
25//extern char *i2cHelp[];
26
27extern int nandCmd();
28extern char *nandHelp[];
29
30extern int ads();
31extern char *adsHelp[];
32
33extern int ldatags();
34extern char *ldatagsHelp[];
Note: See TracBrowser for help on using the repository browser.