X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcommand.h;h=a62f8d60b78917a9b2c1b70943b4a5c978deab15;hb=1481286583f3c9a3b084a38d23367314923814b6;hp=f4113982830ca691aec23034d36b8217533c6021;hpb=721f67e477ee5050961020ed5afd8e0daf42bf2d;p=pspp diff --git a/src/command.h b/src/command.h index f411398283..a62f8d60b7 100644 --- a/src/command.h +++ b/src/command.h @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #if !command_h #define command_h 1 @@ -43,6 +43,8 @@ enum extern int pgm_state; extern const char *cur_proc; +char *pspp_completion_function (const char *text, int state); + int cmd_parse (void); /* Prototype all the command functions. */ @@ -50,10 +52,13 @@ int cmd_parse (void); int FUNC (void); #define SPCCMD(NAME, T1, T2, T3, T4, FUNC) \ int FUNC (void); -#define UNIMPL(NAME, T1, T2, T3, T4) +#define DBGCMD(NAME, T1, T2, T3, T4, FUNC) \ + int FUNC (void); +#define UNIMPL(NAME, T1, T2, T3, T4, DESC) #include "command.def" #undef DEFCMD #undef SPCCMD #undef UNIMPL +#undef DBGCMD #endif /* !command_h */