BAN-AI-Communications/k95-mingw

View on GitHub
k95source/ckuus2.c

Summary

Maintainability
Test Coverage
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SSHTEST
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#define SSHBUILTIN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SSHTEST */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* C K U U S 2 -- User interface strings & help text module for C-Kermit */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/*
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Authors:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Frank da Cruz <fdc@columbia.edu>,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The Kermit Project, Columbia University, New York City
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Jeffrey E Altman <jaltman@secure-endpoints.com>
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Secure Endpoints Inc., New York City
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Copyright (C) 1985, 2005,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Trustees of Columbia University in the City of New York.
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
All rights reserved. See the C-Kermit COPYING.TXT file or the
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
copyright text in the ckcmai.c module for disclaimer and permissions.
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
This module contains HELP command and other long text strings.
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
IMPORTANT: Character string constants longer than about 250 are not portable.
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Longer strings should be broken up into arrays of strings and accessed with
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
hmsga() rather than hmsg().
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
*/
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include "ckcsym.h"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include "ckcdeb.h"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include "ckcnet.h"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include "ckcasc.h"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include "ckcker.h"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include "ckuusr.h"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include "ckcxla.h"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include <windows.h>
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* not NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#define INCL_KBD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2MOUSE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#define INCL_MOU
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2MOUSE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#define INCL_DOSMISC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#define INCL_DOSDEVICES
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include <os2.h> /* This pulls in a whole load of stuff */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#undef COMMENT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include "ckocon.h"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include "ckokvb.h"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#include "ckokey.h"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern xx_strp xxstring;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern char * ccntab[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/*
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
hlptok contains the string for which the user requested help. This is
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
useful for distinguishing synonyms, in case different help text is needed
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
depending on which synonym was given.
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
*/
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern char * hlptok;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOIKSD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int inserver;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* IKSD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOICP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int cmflgs;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DCMDBUF
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern char *cmdbuf, *atmbuf;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern char cmdbuf[], atmbuf[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DCMDBUF */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOICP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern char *xarg0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int nrmt, nprm, dfloc, local, parity, escape;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int turn, flow;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int binary, quiet, keep;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int success, xaskmore;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int tt_rows[], tt_cols[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int tt_rows, tt_cols;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int cmd_rows, cmd_cols;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern long speed;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern char *dftty, *versio, *ckxsys;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHELP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern char *helpfile;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHELP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern struct keytab prmtab[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern struct keytab remcmd[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOICP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Interactive help strings */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Top-level HELP text. IMPORTANT: Also see tophlpi[] for IKSD. */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *tophlp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Trustees of Columbia University in the City of New York.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHELP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type EXIT to exit.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type INTRO for a brief introduction to the Kermit Command screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type LICENSE to see the Kermit 95 license.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type INTRO for a brief introduction to C-Kermit.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type LICENSE to see the C-Kermit license.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type HELP followed by a command name for help about a specific command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOPUSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type MANUAL to access the C-Kermit manual page.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type MANUAL to access the C-Kermit help topic.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type MANUAL to access the K95 manual.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type MANUAL to access the C-Kermit manual.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOPUSH */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type NEWS for news about new features.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type SUPPORT to learn how to get technical support.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Press ? (question mark) at the prompt, or anywhere within a command,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for a menu (context-sensitive help, menu on demand).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Press ? for a list of commands; see documentation for detailed descriptions.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHELP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCMDL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHELP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type HELP OPTIONS for help with command-line options.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHELP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCMDL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef MAC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Documentation for Command Window: \"Using C-Kermit\" by Frank da Cruz and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Christine M. Gianone, Digital Press, 1997, ISBN: 1-55558-164-1. To order,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"call +1 212 854-3703 or +1 800 366-2665.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"DOCUMENTATION: \"Using C-Kermit\" by Frank da Cruz and Christine M. Gianone,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"2nd Edition, Digital Press / Butterworth-Heinemann 1997, ISBN 1-55558-164-1,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"plus supplements at http://www.columbia.edu/kermit/ckermit.html.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* MAC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef MAC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see the Mac Kermit Doc and Bwr files on the Mac Kermit diskette.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef HPUX10
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"See the files in /usr/share/lib/kermit/ for additional information.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* HPUX10 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* MAC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOIKSD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *tophlpi[] = { /* Top-level help for IKSD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Trustees of Columbia University in the City of New York.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHELP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type INTRO for a brief introduction to Kermit commands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type VERSION for version and copyright information.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type HELP followed by a command name for help about a specific command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type SUPPORT to learn how to get technical support.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type LOGOUT (or EXIT) to log out.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Press ? (question mark) at the prompt, or anywhere within a command,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for a menu (context-sensitive help, menu on demand).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Press ? for a list of commands; see documentation for detailed descriptions.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHELP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"DOCUMENTATION: \"Using C-Kermit\" by Frank da Cruz and Christine M. Gianone,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"2nd Edition, Digital Press / Butterworth-Heinemann 1997, ISBN 1-55558-164-1.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To order: +1 212 854-3703 or +1 800 366-2665. More info at the Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Project website, http://www.columbia.edu/kermit/.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOIKSD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHELP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
char *newstxt[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Welcome to Kermit 95 2.1.3. Major new features include:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Welcome to C-Kermit 8.0.206. Major new features include:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Runs in GUI window",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . GUI version available",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SSHBUILTIN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . New built-in SSH v1 and v2 clients",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SSHBUILTIN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . A new built-in FTP client",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHTTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . A new HTTP 1.1 client",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHTTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TN_COMPORT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Telnet Com Port Option for dialing from Telnet modem servers",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TN_COMPORT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . File scanning for automatic text/binary determination",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKLEARN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Learned scripts",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKLEARN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSEXP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . LISP-like S-Expressions and natural floating-point arithmetic",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSEXP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Lots of script programming improvements",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Performance improvements and bug fixes",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Documentation:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 1. \"Using C-Kermit\", second edition (1997), current with C-Kermit 6.0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 2. http://www.columbia.edu/kermit/ckermit70.html",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" which documents the new features of C-Kermit 7.0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 3. http://www.columbia.edu/kermit/ckermit80.html",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" which documents the new features of C-Kermit 8.0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If the release date shown by the VERSION command is long past, be sure to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"check with the Kermit Project to see if there have been updates.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHELP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHELP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
char *introtxt[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Welcome to K-95, Kermit communications software for:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef HPUX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Welcome to HP-UX C-Kermit communications software for:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Welcome to UNIX C-Kermit communications software for:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* HPUX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Welcome to VMS C-Kermit communications software for:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VOS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Welcome to VOS C-Kermit communications software for:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef MAC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Welcome to Mac Kermit communications software for:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Welcome to C-Kermit communications software for:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* MAC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VOS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Error-free and efficient file transfer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . VT320/220/102/100/52, ANSI, Wyse, Linux, Televideo, and other emulations",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef MAC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . VT220 terminal emulation",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Terminal connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* MAC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Script programming",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOICS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . International character set conversion",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOICS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NODIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Numeric and alphanumeric paging",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NODIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Supporting:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Serial connections, direct or dialed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NODIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Automatic modem dialing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NODIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TCPSOCKET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . TCP/IP network connections:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TNCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" - Telnet sessions",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TNCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SSHBUILTIN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" - SSH v1 and v2 connections",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ANYSSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" - SSH connections via external agent",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ANYSSH */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SSHBUILTIN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RLOGCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" - Rlogin sessions",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RLOGCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" - FTP sessions",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKHTTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" - HTTP 1.1 sessions",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKHTTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef IKSD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" - Internet Kermit Service",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* IKSD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TCPSOCKET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ANYX25
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . X.25 network connections",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ANYX25 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DECNET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . DECnet/PATHWORKS LAT Ethernet connections",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DECNET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SUPERLAT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Meridian Technologies' SuperLAT connections",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SUPERLAT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NPIPE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Named-pipe connections",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NPIPE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_NETBIOS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . NETBIOS connections",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_NETBIOS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"While typing commands, you may use the following special characters:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . DEL, RUBOUT, BACKSPACE, CTRL-H: Delete the most recent character typed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . CTRL-W: Delete the most recent word typed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . CTRL-U: Delete the current line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . CTRL-R: Redisplay the current line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_RECALL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Uparrow: Command recall - go backwards in command recall buffer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Downarrow: Command recall - go forward in command recall buffer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOIKSD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (Note: Arrow keys can be used only on the PC's physical keyboard.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOIKSD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . CTRL-P: Command recall - go backwards in command recall buffer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . CTRL-B: Command recall - same as Ctrl-P.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . CTRL-N: Command recall - go forward in command recall buffer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_RECALL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLASTFILE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . CTRL-K: Insert the most recently entered local file specifiction.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLASTFILE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . ? (question mark) Display a menu for the current command field."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . ESC (or TAB or Ctrl-I) Attempt to complete the current field.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . \\ (backslash) include the following character literally",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or introduce a backslash code, variable, or function.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or introduce a numeric backslash code.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"IMPORTANT: Since backslash (\\) is Kermit's command-line escape character,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"you must enter DOS, Windows, or OS/2 pathnames using either forward slash (/)"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"or double backslash (\\\\) as the directory separator in most contexts.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Examples: C:/TMP/README.TXT, C:\\\\TMP\\\\README.TXT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Command words other than filenames can be abbreviated in most contexts.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Basic commands:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" EXIT Exit from Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HELP Request general help",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HELP command Request help about the given command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TAKE Execute commands from a file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TYPE Display a file on your screen",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ORIENTATION Explains directory structure",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Commands for file transfer:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SEND Send files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" RECEIVE Receive files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" GET Get files from a Kermit server",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_RESEND
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" RESEND Recover an interrupted send",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" REGET Recover an interrupted get from a server",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_RESEND */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSERVER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SERVER Be a Kermit server",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSERVER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"File-transfer speed selection:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FAST Use fast settings -- THIS IS THE DEFAULT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CAUTIOUS Use slower, more cautious settings",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ROBUST Use extremely slow and cautious settings",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"File-transfer performance fine tuning:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET RECEIVE PACKET-LENGTH Kermit packet size",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET WINDOW Number of sliding window slots",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PREFIXING Amount of control-character prefixing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To make a direct serial connection:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TAPI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PORT TAPI Select TAPI communication device",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TAPI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PORT Select serial communication device",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PORT Select serial communication port or server",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET LINE Select serial communication device",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET SPEED Select communication speed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PARITY Communications parity (if necessary)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_RTSCTS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET FLOW Communications flow control, such as RTS/CTS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET FLOW Communications flow control, such as XON/XOFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_RTSCTS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CONNECT Begin terminal connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NODIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To dial out with a modem:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET DIAL DIRECTORY Specify dialing directory file (optional)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET DIAL COUNTRY-CODE Country you are dialing from (*)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET DIAL AREA-CODE Area-code you are dialing from (*)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LOOKUP Lookup entries in your dialing directory (*)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET MODEM TYPE Select modem type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TAPI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PORT TAPI Select TAPI communication device",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TAPI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PORT Select serial communication device",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PORT Select serial communication port or server",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET LINE Select serial communication device",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET SPEED Select communication speed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PARITY Communications parity (if necessary)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DIAL Dial the phone number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CONNECT Begin terminal connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Further info: HELP DIAL, HELP SET MODEM, HELP SET PORT, HELP SET DIAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Further info: HELP DIAL, HELP SET MODEM, HELP SET LINE, HELP SET DIAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"(*) (For use with optional dialing directory)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NODIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NETCONN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To make a network connection:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NODIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET NETWORK DIRECTORY Specify a network services directory (optional)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LOOKUP Lookup entries in your network directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NODIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET NETWORK TYPE Select network type (if more than one available)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST Make a network connection but stay in command mode",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CONNECT Begin terminal connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TNCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TELNET Select a Telnet host and CONNECT to it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TNCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RLOGCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" RLOGIN Select an Rlogin host and CONNECT to it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RLOGCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ANYSSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SSH [ OPEN ] Select an SSH host and CONNECT to it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ANYSSH */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FTP [ OPEN ] Make an FTP connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKHTTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HTTP OPEN Make an HTTP connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKHTTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NETCONN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To return from the terminal window to the K-95> prompt:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To return from the terminal window to the K/2> prompt:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To return from a terminal connection to the C-Kermit prompt:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Press the key or key-combination shown after \"Command:\" in the status line",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (such as Alt-x) or type your escape character followed by the letter C.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type your escape character followed by the letter C.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To display your escape character:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SHOW ESCAPE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To display other settings:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SHOW COMMUNICATIONS, SHOW TERMINAL, SHOW FILE, SHOW PROTOCOL, etc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* !NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To display settings:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SHOW COMMUNICATIONS, SHOW FILE, SHOW PROTOCOL, etc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"For a Kermit 95 tutorial, visit:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" http://www.columbia.edu/kermit/k95tutor.html",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"For a C-Kermit tutorial, visit:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" http://www.columbia.edu/kermit/ckututor.html",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To learn about script programming and automation:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Read the manual, \"Using C-Kermit\". For a brief tutorial, visit:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" http://www.columbia.edu/kermit/ckscripts.html",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"For further information about a particular command, type HELP xxx,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"where xxx is the name of the command. For documentation, news of new",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"releases, and information about other Kermit software, contact:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The Kermit Project E-mail: kermit@columbia.edu",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Columbia University Web: http://www.columbia.edu/kermit/",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 612 West 115th Street Voice: +1 (212) 854-3703",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" New York NY 10025-7799 Fax: +1 (212) 662-6442",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" USA",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxymatch[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MATCH { DOTFILE, FIFO } { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether wildcards should match dotfiles (files whose names begin",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with period) or UNIX FIFO special files. MATCH FIFO default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" MATCH DOTFILE default is OFF in UNIX, ON elsewhere.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxygui[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET GUI CLOSE OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Disables the System Menu Close and File->Exit functions which could be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" used to exit Kermit. Once disabled these functions cannot be re-enabled",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and the only way to exit Kermit is via the Kermit Script EXIT command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET GUI DIALOGS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON means that popups, alerts, use GUI dialogs; OFF means to use",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" text-mode popups or prompts. ON by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET GUI FONT name size",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Chooses the font and size. Type \"set gui font ?\" to see the list of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" choices. The size can be a whole number or can contain a decimal point",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and a fraction (which is rounded to the nearest half point).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET GUI MENUBAR OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Disables menubar functions which could be used to modify the Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" session configuration. Once disabled the menubar functions cannot be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" re-enabled.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET GUI RGBCOLOR colorname redvalue greenvalue bluevalue",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the red-green-blue mixture to be used to render the given",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" color name. Type \"set gui rgbcolor\" to see a list of colornames.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the RGB values are whole numbers from 0 to 255.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET GUI TOOLBAR OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Disables toolbar functions which could be used to modify the Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" session configuration. Once disabled the toolbar functions cannot be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" re-enabled.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET GUI WINDOW POSITION x y",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Moves the K95 window to the given X,Y coordinates, pixels from top left.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (Not yet implemented -- use command-line options to do this.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET GUI WINDOW RESIZE-MODE { CHANGE-DIMENSIONS, SCALE-FONT }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is CHANGE-DIMENSIONS.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET GUI WINDOW RUN-MODE { MAXIMIZE, MINIMIZE, RESTORE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Changes the run mode state of the GUI window.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ANYSSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxxssh[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SSHBUILTIN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SSH { ADD, AGENT, CLEAR, KEY, [ OPEN ], V2 } operands...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Performs an SSH-related action, depending on the keyword that follows:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH ADD LOCAL-PORT-FORWARD local-port host port",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Adds a port forwarding triplet to the local port forwarding list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The triplet specifies a local port to be forwarded and the hostname /",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ip-address and port number to which the port should be forwarded from",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the remote host. Port forwarding is activated at connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" establishment and continues until the connection is terminated.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH ADD REMOTE-PORT-FORWARD remote-port host port",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Adds a port forwarding triplet to the remote port forwarding list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The triplet specifies a remote port to be forwarded and the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" hostname/ip-address and port number to which the port should be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" forwarded from the local machine. Port forwarding is activated at",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" connection establishment and continues until the connection is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" terminated.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH AGENT ADD [ identity-file ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Adds the contents of the identity-file (if any) to the SSH AGENT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" private key cache. If no identity-file is specified, all files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specified with SET SSH IDENTITY-FILE are added to the cache.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH AGENT DELETE [ identity-file ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Deletes the contents of the identity-file (if any) from the SSH AGENT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" private key cache. If no identity-file is specified, all files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specified with SET SSH IDENTITY-FILE are deleted from the cache.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH AGENT LIST [ /FINGERPRINT ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lists the contents of the SSH AGENT private key cache. If /FINGERPRINT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is specified, the fingerprint of the private keys are displayed instead",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of the keys.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH CLEAR LOCAL-PORT-FORWARD",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Clears the local port forwarding list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH CLEAR REMOTE-PORT-FORWARD",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Clears the remote port forwarding list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH KEY commands:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The SSH KEY commands create and manage public and private key pairs",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (identities). There are three forms of SSH keys. Each key pair is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" stored in its own set of files:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Key Type Private Key File Public Key File",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" v1 RSA keys \\v(appdata)ssh/identity \\v(appdata)ssh/identity.pub",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" v2 RSA keys \\v(appdata)ssh/id_rsa \\v(appdata)ssh/id_rsa.pub",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" v2 DSA keys \\v(appdata)ssh/id_dsa \\v(appdata)ssh/id_dsa.pub",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Keys are stored using the OpenSSH keyfile format. The private key",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files can be (optionally) protected by specifying a passphrase. A",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" passphrase is a longer version of a password. English text provides",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" no more than 2 bits of key data per character. 56-bit keys can be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" broken by a brute force attack in approximately 24 hours. When used,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" private key files should therefore be protected by a passphrase of at",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" least 40 characters (about 80 bits).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" To install a public key file on the host, you must transfer the file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to the host and append it to your \"authorized_keys\" file. The file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" permissions must be 600 (or equivalent).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH KEY CHANGE-PASSPHRASE [ /NEW-PASSPHRASE:passphrase",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /OLD-PASSPHRASE:passphrase ] filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This re-encrypts the specified private key file with a new passphrase.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The old passphrase is required. If the passphrases (and filename) are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" not provided Kermit prompts your for them.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH KEY CREATE [ /BITS:bits /PASSPHRASE:passphrase",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TYPE:{ V1-RSA, V2-DSA, V2-RSA } /V1-RSA-COMMENT:comment ] filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command creates a new private/public key pair. The defaults are:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" BITS:1024 and TYPE:V2-RSA. The filename is the name of the private",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" key file. The public key is created with the same name with .pub",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" appended to it. If a filename is not specified Kermit prompts you for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it. V1 RSA key files may have an optional comment, which is ignored",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for other key types.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH KEY DISPLAY [ /FORMAT:{FINGERPRINT,IETF,OPENSSH,SSH.COM} ] filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command displays the contents of a public or private key file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default format is OPENSSH.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH KEY V1 SET-COMMENT filename comment",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command replaces the comment associated with a V1 RSA key file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH [ OPEN ] host [ port ] [ /COMMAND:command /USER:username",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PASSWORD:pwd /VERSION:{ 1, 2 } /X11-FORWARDING:{ ON, OFF } ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command establishes a new connection using SSH version 1 or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" version 2 protocol. The connection is made to the specified host on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the SSH port (you can override the port by including a port name or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" number after the host name). Once the connection is established the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" authentication negotiations begin. If the authentication is accepted,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the local and remote port forwarding lists are used to establish the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" desired connections. If X11 Forwarding is active, this results in a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" remote port forwarding between the X11 clients on the remote host and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" X11 Server on the local machine. If a /COMMAND is provided, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command is executed on the remote host in place of your default shell.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" An example of a /COMMAND to execute C-Kermit in SERVER mode is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SSH OPEN hostname /COMMAND:{kermit -x -l 0}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SSH V2 REKEY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Requests that an existing SSH V2 connection generate new session keys.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* SSHBUILTIN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SSH [ options ] <hostname> [ command ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Makes an SSH connection using the external ssh program via the SET SSH",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" COMMAND string, which is \"ssh -e none\" by default. Options for the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" external ssh program may be included. If the hostname is followed by a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command, the command is executed on the host instead of an interactive",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" shell.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SSHBUILTIN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxyssh[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SSHBUILTIN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH AGENT-FORWARDING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If an authentication agent is in use, setting this value to ON",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" results in the connection to the agent being forwarded to the remote",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" computer. The default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH CHECK-HOST-IP { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether the remote host's ip-address should be checked",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" against the matching host key in the known_hosts file. This can be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" used to determine if the host key changed as a result of DNS spoofing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH COMPRESSION { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether compression will be used. The default is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH DYNAMIC-FORWARDING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether Kermit is to act as a SOCKS4 service on port 1080",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when connected to a remote host via SSH. When Kermit acts as a SOCKS4",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" service, it accepts connection requests and forwards the connections",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" through the remote host. The default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH GATEWAY-PORTS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether Kermit should act as a gateway for forwarded",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" connections received from the remote host. The default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH GSSAPI DELEGATE-CREDENTIALS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether Kermit should delegate GSSAPI credentials to ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the remote host after authentication. Delegating credentials allows",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the credentials to be used from the remote host. The default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH HEARTBEAT-INTERVAL <seconds>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a number of seconds of idle time after which an IGNORE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" message will be sent to the server. This pulse is useful for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" maintaining connections through HTTP Proxy servers and Network",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Address Translators. The default is OFF (0 seconds).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH IDENTITY-FILE filename [ filename [ ... ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies one or more files from which the user's authorization",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" identities (private keys) are to be read when using public key",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" authorization. These are files used in addition to the default files:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\v(appdata)ssh/identity V1 RSA",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\v(appdata)ssh/id_rsa V2 RSA",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\v(appdata)ssh/id_dsa V2 DSA",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH KERBEROS4 TGT-PASSING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether Kermit should forward Kerberos 4 TGTs to the host.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH KERBEROS5 TGT-PASSING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether Kermit should forward Kerberos 5 TGTs to to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" host. The default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH PRIVILEGED-PORT { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether a privileged port (less than 1024) should be used",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when connecting to the host. Privileged ports are not required except",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when using SSH V1 with Rhosts or RhostsRSA authorization. The default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH QUIET { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether all messages generated in conjunction with SSH",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" protocols should be suppressed. The default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH STRICT-HOST-KEY-CHECK { ASK, ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies how Kermit should behave if the the host key check fails.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When strict host key checking is OFF, the new host key is added to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" protocol-version-specific user-known-hosts-file. When strict host key",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" checking is ON, the new host key is refused and the connection is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" dropped. When set to ASK, Kermit prompt you to say whether the new",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" host key should be accepted. The default is ASK.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Strict host key checking protects you against Trojan horse attacks.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" It depends on you to maintain the contents of the known-hosts-file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with current and trusted host keys.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH USE-OPENSSH-CONFIG { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether Kermit should parse an OpenSSH configuration file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" after applying Kermit's SET SSH commands. The configuration file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" would be located at \\v(home)ssh/ssh_config. The default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH V1 CIPHER { 3DES, BLOWFISH, DES }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies which cipher should be used to protect SSH version 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" connections. The default is 3DES.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH V1 GLOBAL-KNOWN-HOSTS-FILE filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the location of the system-wide known-hosts file. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \v(common)ssh_known_hosts",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH V1 USER-KNOWN-HOSTS-FILE filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the location of the user-known-hosts-file. The default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" location is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\v(appdata)ssh/known_hosts",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH V2 AUTHENTICATION { EXTERNAL-KEYX, GSSAPI, HOSTBASED, ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KEYBOARD-INTERACTIVE, PASSWORD, PUBKEY, SRP-GEX-SHA1 } [ ... ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies an ordered list of SSH version 2 authentication methods to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be used when connecting to the remote host. The default list is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" external-keyx gssapi hostbased publickey srp-gex-sha1 publickey",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" keyboard-interactive password none",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH V2 AUTO-REKEY { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether Kermit automatically issues rekeying requests",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" once an hour when SSH version 2 in in use. The default is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH V2 CIPHERS { 3DES-CBC, AES128-CBC AES192-CBC AES256-CBC",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ARCFOUR BLOWFISH-CBC CAST128-CBC RIJNDAEL128-CBC RIJNDAEL192-CBC",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" RIJNDAEL256-CBC }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies an ordered list of SSH version ciphers to be used to encrypt",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the established connection. The default list is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" aes128-cbc 3des-cbc blowfish-cbc cast128-cbc arcfour aes192-cbc",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" aes256-cbc",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"rijndael\" is an alias for \"aes\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH V2 GLOBAL-KNOWN-HOSTS-FILE filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the location of the system-wide known-hosts file. The default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" location is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\v(common)ssh/known_hosts2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH V2 HOSTKEY-ALGORITHMS { SSH-DSS, SSH-RSA }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies an ordered list of hostkey algorithms to be used to verify",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the identity of the host. The default list is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ssh-rsa ssh-dss",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH V2 MACS { HMAC-MD5 HMAC-MD5-96 HMAC-RIPEMD160 HMAC-SHA1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HMAC-SHA1-96 }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies an ordered list of Message Authentication Code algorithms to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be used for integrity protection of the established connection. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default list is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" hmac-md5 hmac-sha1 hmac-ripemd160 hmac-sha1-96 hmac-md5-96",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH V2 USER-KNOWN-HOSTS-FILE filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the location of the user-known-hosts file. The default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" location is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\v(appdata)ssh/known_hosts2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH VERBOSE level",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies how many messages should be generated by the OpenSSH engine.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The level can range from 0 to 7. The default value is 2.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH VERSION { 1, 2, AUTOMATIC }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies which SSH version should be negotiated. The default is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTOMATIC which means use version 2 if supported; otherwise to fall",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" back to version 1.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH X11-FORWARDING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether X Windows System Data is to be forwarded across the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" established SSH connection. The default is OFF. When ON, the DISPLAY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" value is either set using the SET TELNET ENV DISPLAY command or read",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from the DISPLAY environment variable.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SSH XAUTH-LOCATION filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the location of the xauth executable (if provided with the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" X11 Server software.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* SSHBUILTIN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SSH COMMAND command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the external command to be used to make an SSH connection.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" By default it is \"ssh -e none\" (ssh with no escape character).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SSHBUILTIN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ANYSSH */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxygpr[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET GET-PUT-REMOTE { AUTO, FTP, KERMIT}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit whether GET, PUT, and REMOTE commands should be directed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" at a Kermit server or an FTP server. The default is AUTO, meaning that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" if you have only one active connection, the appropriate action is taken",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when you give a GET, PUT, or REMOTE command. SET GET-PUT-REMOTE FTP forces"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit to treat GET, PUT, and REMOTE as FTP client commands; setting this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to KERMIT forces these commands to be treated as Kermit client commands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NOTE: PUT includes SEND, MPUT, MSEND, and all other similar commands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also see HELP REMOTE, HELP SET LOCUS, HELP FTP.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef LOCUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxylocus[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET LOCUS { ASK, AUTO, LOCAL, REMOTE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET LOCUS { AUTO, LOCAL, REMOTE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether unprefixed file management commands should operate",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" locally or (when there is a connection to a remote FTP or Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" server) sent to the server. The affected commands are: CD (CWD), PWD,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CDUP, DIRECTORY, DELETE, RENAME, MKDIR, and RMDIR. To force any of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" these commands to be executed locally, give it an L-prefix: LCD, LDIR,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" etc. To force remote execution, use the R-prefix: RCD, RDIR, and so",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" on. SHOW COMMAND shows the current Locus.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" By default, the Locus for file management commands is switched",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" automatically whenever you make or close a connection: if you make an",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FTP connection, the Locus becomes REMOTE; if you close an FTP connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or make any other kind of connection, the Locus becomes LOCAL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" There are two kinds of automatic switching: ASK (the default) which",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" asks you if it's OK to switch, and AUTO, which switches without asking.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If you give a SET LOCUS LOCAL or SET LOCUS REMOTE command, this sets",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the locus as indicated and disables automatic switching.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET LOCUS AUTO or SET LOCUS ASK restores automatic switching.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" You can also change Locus switching and behavior in the Actions menu.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET LOCUS AUTO restores automatic switching.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* LOCUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxtak[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: TAKE filename [ arguments ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit to execute commands from the named file. Optional argument",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" words, are automatically assigned to the macro argument variables \\%1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" through \\%9. Kermit command files may themselves contain TAKE commands,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" up to any reasonable depth of nesting.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TCPSOCKET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxfirew[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Firewall Traversal in Kermit 95",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Firewall Traversal in C-Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef CKHTTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef CK_SOCKS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#define NOFIREWALL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NOFIREWALL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"This version of Kermit was built with no support for firewall traversal",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"protocols. Kermit can be built with support for HTTP Proxy Servers,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SOCKS authorized firewall traversal, and FTP Passive connection modes.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* NOFIREWALL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKHTTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The simplist form of firewall traversal is the HTTP CONNECT command. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"CONNECT command was implemented to allow a public web server which usually",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"resides on the boundary between the public and private networks to forward",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP requests from clients on the private network to public web sites. To",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"allow secure web connections, the HTTP CONNECT command authenticates the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"client with a username/password and then establishes a tunnel to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"desired host.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Web servers that support the CONNECT command can be configured to allow",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"outbound connections for authenticated users to any TCP/IP hostname-port",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"combination accessible to the Web server. HTTP CONNECT can be used only",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"with TCP-based protocols. Protocols such as Kerberos authentication that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"use UDP/IP cannot be tunneled using HTTP CONNECT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP HTTP-PROXY [switches] [<hostname or ip-address>[:<port>]]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If a hostname or ip-address is specified, Kermit uses the given",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" proxy server when attempting outgoing TCP connections. If no hostnamer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or ip-address is specified, any previously specified Proxy server is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" removed. If no port number is specified, the \"http\" service is used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" [switches] can be one or more of:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /AGENT:<agent> /USER:<user> /PASSWORD:<password>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Switch parameters are used when connecting to the proxy server and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" override any other values associated with the connection.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKHTTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SOCKS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"In the early 1990s as firewalls were becoming prevalent, David Koblas",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"developed the SOCKS protocol for TCP/IP firewall traversal. Two versions",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"of SOCKS are currently in use: Version 4.2 lets TCP/IP client applications",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"traverse firewalls, similar to HTTP CONNECT, except that the SOCKS client",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"is aware of the public source IP address and port, which can be used within",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the application protocol to assist in securing the connection (e.g. FTP",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"sessions secured with GSSAPI Kerberos 5).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"In 1995 the IETF issued SOCKS Protocol Version 5 (RFC 1928), which is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"significantly more general than version 4. Besides supporting client-",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"to-server TCP/IP connections, it also includes:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Authenticated firewall traversal of UDP/IP packets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . Authenticated binding of incoming public ports on the firewall.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"This lets a service on the private network offer public services. It also",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"lets client applications like FTP establish a temporary public presence",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"that can be used by the FTP server to create a data channel. By allowing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the client to bind to a public port on the firewall and be aware of the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"public address, SOCKS 5 lets the application protocol communicate this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"information to the server.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Kermit 95 supports SOCKS 4.2. The SOCKS Server is specified with:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET TCP SOCKS-SERVER hostname/ip-address",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The SOCKS.CONF file is found by examining the ETC environment variable;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"searching in \\WINDOWS on Windows 95/98/ME; or the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\WINDOWS\\SYSTEM\\DRIVERS\\ETC directory on NT\\2000\\XP systems.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Kermit/2 provides support for SOCKS 4.2 servers when using IBM TCP/IP 2.0,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"IBM OS/2 WARP, or a compatible protocol stack. SOCKS is one popular means",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"of implementing a firewall between a private network and the Internet.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Kermit/2 shares the same SOCKS environment variables as IBM Gopher. It also",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"supports the use of local SOCKS configuration files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To specify the default SOCKS Server, add SET SOCKS_SERVER= to your",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"CONFIG.SYS file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If you must use a SOCKS Distributed Name Server, add SET SOCKS_NS= to your",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"CONFIG.SYS file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If you must use a specific with your SOCKS server, be sure to add SET USER=",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"to your CONFIG.SYS file. Otherwise, \"os2user\" is used by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The SOCKS configuration file must be placed in the directory pointed to by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the ETC environment variable as declared in your CONFIG.SYS file. The name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"should be SOCKS.CONF. On a FAT file system, use SOCKS.CNF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The format of the lines in the SOCKS configuration file are as follows:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . # comments",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . deny [*=userlist] dst_addr dst_mask [op port]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . direct [*=userlist] dst_addr dst_mask [op port]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . sockd [@=serverlist] [*=userlist] dst_addr dst_mask [op port]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"op must be one of 'eq', 'neq', 'lt', 'gt', 'le', or 'ge'. dst_addr,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"dst_mask, and port may be either numeric or name equivalents.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Kermit/2 ignores the [*=userlist] and [@=serverlist] fields. Matches are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"determined on a first match not a best match basis. Addresses for which no",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"match is found default to \"sockd\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"For completeness: Fields in square brackets are optional. The optional",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"@=serverlist field with a 'sockd' line specifies the list of SOCKS servers",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the client should try (in the given order) instead of the default SOCKS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"server. If the @=serverlist part is omitted, then the default SOCKS server",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"is used. Commas are used in the userlist and serverlist as separators, no",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"white spaces are allowed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SOCKS5
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"This version of C-Kermit supports SOCKS version 5.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* CK_SOCKS5 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"This version of C-Kermit supports SOCKS version 4.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SOCKS5 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"See the man page (or other system documentation) for information on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"configuring the SOCKS library via the /etc/socks.conf file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SOCKS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"FTP is one of the few well-known Internet services that requires",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"multiple connections. As described above, FTP originally required the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"server to establish the data connection to the client using a destination",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"address and port provided by the client. This doesn't work with port",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"filtering firewalls.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Later, FTP protocol added a \"passive\" mode, in which connections for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the data channels are created in the reverse direction. Instead of the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"server establishing a connection to the client, the client makes a second",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"connection with the server as the destination. This works just fine as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"long as the client is behind the firewall and the server is in public",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"address space. If the server is behind a firewall then the traditional",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"active mode must be used. If both the client and server are behind their",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"own port filtering firewalls then data channels cannot be established.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"In Kermit's FTP client, passive mode is controlled with the command:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET FTP PASSIVE-MODE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The default is ON, meaning to use passive mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFIREWALL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TCPSOCKET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxsave[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SAVE item filename { NEW, APPEND }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Saves the requested material in the given file. A new file is created",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by default; include APPEND at the end of the command to append to an",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" existing file. Items:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSETKEY
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KEYMAP Saves the current key settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSETKEY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_RECALL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" COMMAND HISTORY Saves the current command recall (history) buffer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_RECALL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" COMMAND SCROLLBACK Saves the current command-screen scrollback buffer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TERMINAL SCROLLBACK Saves the current terminal-screen scrollback buffer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKROOT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxchroot[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET ROOT directoryname",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets the root for file access to the given directory and disables access",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to system and shell commands and external programs. Once this command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is given, no files or directories outside the tree rooted by the given",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory can be opened, read, listed, deleted, renamed, or accessed in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" any other way. This command can not be undone by a subsequent SET ROOT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command. Primarily for use with server mode, to restrict access of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" clients to a particular directory tree. Synonym: CHROOT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKROOT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxscrn[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SCREEN { CLEAR, CLEOL, MOVE row column }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Performs screen-formatting actions.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Performs screen-formatting actions. Correct operation of these commands",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" depends on proper terminal setup on both ends of the connection -- mainly",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that the host terminal type is set to agree with the kind of terminal or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the emulation you are viewing C-Kermit through.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SCREEN CLEAR",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Moves the cursor to home position and clears the entire screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonyms: CLS, CLEAR SCREEN, CLEAR COMMAND-SCREEN ALL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonyms: CLS, CLEAR SCREEN.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SCREEN CLEOL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Clears from the current cursor position to the end of the line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonym: CLEAR COMMAND-SCREEN EOL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SCREEN MOVE row column",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Moves the cursor to the indicated row and column. The row and column",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" numbers are 1-based so on a 24x80 screen, the home position is 1 1 and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the lower right corner is 24 80. If a row or column number is given that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" too large for what Kermit or the operating system thinks is your screen",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" size, the appropriate number is substituted.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HELP FUNCTION SCRNCURX, HELP FUNCTION SCRNCURY, HELP FUNCTION SCRSTR,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SHOW VARIABLE TERMINAL, SHOW VARIABLE COLS, SHOW VAR ROWS, SHOW COMMAND.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmfword[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\fword(s1,n1,s2,s3,n2,n3) - Extract word from string.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" s1 = source string",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" n1 = word number (1-based)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" s2 = optional break set.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" s3 = optional include set.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" n2 = optional grouping mask.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" n3 = optional separator flag:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 0 = collapse adjacent separators",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 1 = don't collapse adjacent separators.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default break set is all characters except ASCII letters and digits.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII (C0) control characters are always treated as break characters.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default include set is null.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If grouping mask given and nonzero, words can be grouped by quotes or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" brackets selected by the sum of the following:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 1 = doublequotes: \"a b c\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 2 = braces: {a b c}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 4 = apostrophes: 'a b c'",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 8 = parentheses: (a b c)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 16 = square brackets: [a b c]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 32 = angle brackets: <a b c>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Nesting is possible with {}()[]<> but not with quotes or apostrophes.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns string:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Word number n, if there is one, otherwise an empty string.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxprompt[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: PROMPT [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enters interactive command level from within a script in such a way that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the script can be continued with an END or RETURN command. STOP, EXIT,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SHOW STACK, TRACE, and Ctrl-C all have their normal effects. The PROMPT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command allows variables to be examined or changed, or any other commands",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be given, in any number, prior to returning to the script, allowing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit to serve as its own debugger; adding the PROMPT command to a script",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is like setting a breakpoint. If the optional text is included, it is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" used as the new prompt for this level, e.g. \"prompt Breakpoint_1>\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxinp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: INPUT [ /CLEAR /NOMATCH /NOWRAP ] \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
{ number-of-seconds, time-of-day } [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Examples:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" INPUT 5 Login:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" INPUT 23:59:59 RING",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" INPUT /NOMATCH 10",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" INPUT /CLEAR \\13\\10",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" INPUT /CLEAR \\13\\10$\32",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" INPUT 10 \\fpattern(<*@*.*>)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Waits up to the given number of seconds, or until the given time of day,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for the given text to arrive on the connection. For use in script programs",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with IF FAILURE or IF SUCCESS, which tell whether the desired text arrived",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" within the given amount of time.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The text, if given, can be a regular text or it can be a \\pattern()",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" invocation, in which case it is treated as a pattern rather than a literal",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" string (HELP PATTERNS for details).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If no text is specified, INPUT waits for the first character that arrives",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and makes it available in the \\v(inchar) variable.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the /NOMATCH switch is included, INPUT does not attempt to match any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" characters, but continues reading from the communication connection until",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the timeout interval expires. If the timeout interval is 0, the INPUT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command does not wait; i.e. the given text must already be available for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" reading for the INPUT command to succeed. If the interval is negative,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the INPUT command waits forever.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The INPUT buffer, \\v(input), is normally circular. Incoming material is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" appended to it until it reaches the end, and then it wraps around to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" beginning. If the /CLEAR switch is given, INPUT clears its buffer before",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" reading from the connection.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Typical example of use:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" INPUT 10 login:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF FAIL EXIT 1 \"Timed out waiting for login prompt\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LINEOUT myuserid",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" INPUT 10 Password:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF FAIL EXIT 1 \"Timed out waiting for Password prompt\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LINEOUT xxxxxxx",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The /NOWRAP switch means that INPUT should return with failure status",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and with \\v(instatus) set to 6 if its internal buffer fills up before",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" any of the other completion criteria are met. This allows for capture",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of the complete incoming data stream (except NUL bytes, which are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" discarded).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
\\v(instatus) values are: 0 (success), 1 (timed out), 2 (keyboard interrupt),",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 3 (internal error), 4 (I/O error or connection lost), 5 (INPUT disabled),",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and 6 (buffer filled and /NOWRAP set).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also see OUTPUT, MINPUT, REINPUT, SET INPUT and CLEAR. See HELP PAUSE for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" details on time-of-day format and HELP PATTERNS for pattern syntax.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxout[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: OUTPUT text",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sends the text out the communications connection, as if you had typed it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" during CONNECT mode. The text may contain backslash codes, variables,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" etc, plus the following special codes:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\N - Send a NUL (ASCII 0) character (you can't use \\0 for this).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\B - Send a BREAK signal.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\L - Send a Long BREAK signal.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see SET OUTPUT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxypari[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET PARITY NONE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Chooses 8 data bits and no parity.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET PARITY { EVEN, ODD, MARK, SPACE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Chooses 7 data bits plus the indicated kind of parity.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Forces 8th-bit prefixing during file transfer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef HWPARITY
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET PARITY HARDWARE { EVEN, ODD }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Chooses 8 data bits plus the indicated kind of parity.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see SET TERMINAL BYTESIZE, SET SERIAL, and SET STOP-BITS.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see SET TERMINAL BYTESIZE and SET SERIAL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* HWPARITY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyesc[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET ESCAPE number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Decimal ASCII value for escape character during CONNECT, normally 29",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (Control-]). Type the escape character followed by C to get back to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C-Kermit prompt or followed by ? to see other options, or use the \\Kexit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" keyboard verb, normally assigned to Alt-x.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEXT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET ESCAPE number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Decimal ASCII value for escape character during CONNECT, normally 29",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (Control-]). Type the escape character followed by C to get back to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C-Kermit prompt or followed by ? to see other options.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET ESCAPE number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Decimal ASCII value for escape character during CONNECT, normally 28",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (Control-\\). Type the escape character followed by C to get back to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C-Kermit prompt or followed by ? to see other options.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEXT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"You may also enter the escape character as ^X (circumflex followed by a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"letter or one of: @, ^, _, [, \\, or ], to indicate a control character;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"for example, SET ESC ^_ sets your escape character to Ctrl-Underscore.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"You can also specify an 8-bit character (128-255) as your escape character,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"either by typing it literally or by entering its numeric code.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyout[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET OUTPUT PACING <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" How many milliseconds to pause after sending each OUTPUT character,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" normally 0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET OUTPUT SPECIAL-ESCAPES { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to process the special OUTPUT-only escapes \\B, \\L, and \\N.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Normally ON (they are processed).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyinp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET INPUT parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_AUTODL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET INPUT AUTODOWNLOAD { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Controls whether autodownloads are allowed during INPUT command execution.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_AUTODL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET INPUT BUFFER-LENGTH number-of-bytes",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Removes the old INPUT buffer and creates a new one with the given length.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET INPUT CANCELLATION { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether an INPUT in progress can be can interrupted from the keyboard.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET INPUT CASE { IGNORE, OBSERVE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether alphabetic case is to be significant in string comparisons.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This setting is local to the current macro or command file, and is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" inherited by subordinate macros and take files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET INPUT ECHO { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether to display arriving characters read by INPUT on the screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKFLOAT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET INPUT SCALE-FACTOR <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" A number to multiply all INPUT timeouts by, which may include a fractional",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" part, e.g. 2.5. All INPUT commands that specify a timeout in seconds",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (as opposed to a specific time of day) have their time limit adjusted",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" automatically by this factor, which is also available in the built-in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" read-only variable \\v(inscale). The default value is 1.0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKFLOAT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET INPUT SILENCE <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The maximum number to seconds of silence (no input at all) before the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" INPUT command times out, 0 for no maximum.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET INPUT TERMINAL { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether the data received during an INPUT command is displayed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in the terminal window. Default is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET INPUT TIMEOUT-ACTION { PROCEED, QUIT }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether to proceed or quit from a script program if an INPUT command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" fails. PROCEED (default) allows use of IF SUCCESS / IF FAILURE commands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This setting is local to the current macro or command file, and is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" inherited by subordinate macros and take files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyfunc[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FUNCTION DIAGNOSTICS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to issue diagnostic messages for illegal function calls and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" references to nonexistent built-in variables. ON by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FUNCTION ERROR { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether an illegal function call or reference to a nonexistent built-in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" variable should cause a command to fail. OFF by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyxyz[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_XYZ
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef XYZ_INTERNAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* This is for built-in protocols */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET PROTOCOL { KERMIT, XMODEM, YMODEM, ZMODEM } [ s1 s2 [ s3 ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects protocol to use for transferring files. String s1 is a command to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" send to the remote host prior to SENDing files with this protocol in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" binary mode; string s2 is the same thing but for text mode. Use \"%\" in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" any of these strings to represent the filename(s). If the protocol is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KERMIT, you may also specify a string s3, the command to start a Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" server on the remote host when you give a GET, REGET, REMOTE, or other",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" client command. Use { braces } if any command contains spaces. Examples:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" set proto xmodem {rx %s} {rx -a %s}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" set proto kermit {kermit -YQir} {kermit -YQTr} {kermit -YQx}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* This is for when non-Kermit protocols are external */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
SET PROTOCOL { KERMIT, XMODEM, YMODEM, ZMODEM } [ s1 s2 s3 s4 s5 s6 ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects protocol to use for transferring files. s1 and s2 are commands to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" output prior to SENDing with this protocol, to automatically start the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" RECEIVE process on the other end in binary or text mode, respectively.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the protocol is KERMIT, s3 is the command to start a Kermit server on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the remote computer, and there are no s4-s6 commands. Otherwise, s3 and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" s4 are commands used on this computer for sending files with this protocol",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in binary or text mode, respectively; s5 and s6 are the commands for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" receiving files with this protocol. Use \"%s\" in any of these strings",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to represent the filename(s). Use { braces } if any command contains",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" spaces. Examples:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" set proto kermit {kermit -YQir} {kermit -YQTr} {kermit -YQx}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" set proto ymodem rb {rb -a} {sb %s} {sb -a %s} rb rb",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"External protocols require REDIRECT and external file transfer programs that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"use redirectable standard input/output.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* XYZ_INTERNAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
SET PROTOCOL KERMIT [ s1 [ s2 [ s3 ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lets you specify the autoupload binary, autoupload text, and autoserver",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command strings to be sent to the remote system in advance of any SEND",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or GET commands. By default these are \"kermit -ir\", \"kermit -r\", and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"kermit -x\". Use { braces } around any command that contains spaces.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" set proto kermit {kermit -Yir} {kermit -YTr} {kermit -Yx}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_XYZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SHOW PROTOCOL displays the current settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxbye = "Syntax: BYE\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Shut down and log out a remote Kermit server";
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_PERMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxchmod[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: CHMOD [ switches ] code filespec",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UNIX only. Changes permissions of the given file(s) to the given code,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" which must be an octal number such as 664 or 775. Optional switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /FILES Only change permissions of regular files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /DIRECTORIES Only change permissions of directory files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TYPE:BINARY Only change permissions of binary files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TYPE:TEXT Only change permissions of text files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /DOTFILES Include files whose names begin with dot (.).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /RECURSIVE Change permissions in subdirectories too.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /LIST List each file (synonym: /VERBOSE).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOLIST Operate silently (synonym: /QUIET).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PAGE When listing, pause at end of each screen (implies /LIST).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOPAGE When listing, don't pause at end of each screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SIMULATE Show what would be done but don't actually do it.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_PERMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSEXP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxsexp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: (operation operand [ operand [ ... ] ])",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C-Kermit includes a simple LISP-like S-Expression parser operating on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" numbers only. An S-Expression is always enclosed in parentheses. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" parentheses can contain (a) a number, (b) a variable, (c) a function that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" returns a number, or (d) an operator followed by one or more operands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Operands can be any of (a) through (c) or an S-Expression. Numbers can be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" integers or floating-point. Any operand that is not a number and does not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" start with backslash (\\) is treated as a Kermit macro name. Operators:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Operator Action Example Value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" EVAL (.) Returns the contained value (6) 6",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" QUOTE (') Inhibits evaluation of following value (quote a) a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SETQ Assigns a value to a global variable (setq a 2) 2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LET Assigns a value to a local variable (let b -1.3) -1.3",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" + Adds all operands (1 or more) (+ a b) 0.7",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" - Subtracts all operands (1 or more) (- 9 5 2 1) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" * Multiplies all operands (1 or more) (* a (+ b 1) 3) -1.8",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" / Divides all operands (1 or more) (/ b a 2) -0.325",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ^ Raise given number to given power (^ 3 2) 9",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ++ Increments a variable (++ a 1.2) 3.2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" -- Decrements a variable (-- a) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ABS Absolute value of 1 operand (abs (* a b 3)) 7.8",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" MAX Maximum of all operands (1 or more) (max 1 2 3 4) 4",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" MIN Minimum of all operands (1 or more) (min 1 2 3 4) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" MOD Modulus of all operands (1 or more) (mod 7 4 2) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TRUNCATE Integer part of floating-point operand (truncate 1.333) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CEILING Ceiling of floating-point operand (ceiling 1.25) 2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FLOOR Floor of floating-point operand (floor 1.25) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ROUND Operand rounded to nearest integer (round 1.75) 2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SQRT Square root of 1 operand (sqrt 2) 1.414..",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" EXP e (2.71828..) to the given power (exp -1) 0.367..",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SIN Sine of angle expressed in radians (sin (/ pi 2)) 1.0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" COS Cosine of given number (cos pi) -1.0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TAN Tangent of given number (tan pi) 0.0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LOG Natural log (base e) of given number (log 2.7183) 1.000..",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LOG10 Log base 10 of given number (log10 1000) 3.0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Predicate operators return 0 if false, 1 if true, and if it is the outermost",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"operator, sets SUCCESS or FAILURE accordingly:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" < Operands in strictly descending order (< 6 5 4 3 2 1) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <= Operands in descending order (<= 6 6 5 4 3 2) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" != Operands are not equal (!= 1 1 1.0) 0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" = (==) All operands are equal (= 3 3 3 3) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" > Operands in strictly ascending order (> 1 2 3 4 5 6) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" >= Operands in ascending order (> 1 1 2 3 4 5) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AND (&&) Operands are all true (and 1 1 1 1 0) 0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OR (||) At least one operand is true (or 1 1 1 1 0) 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" XOR Logical Exclusive OR (xor 3 1) 0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NOT (!) Reverses truth value of operand (not 3) 0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Bit-oriented operators:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" & Bitwise AND (& 7 2) 2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" | Bitwise OR (| 1 2 3 4) 7",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" # Bitwise Exclusive OR (# 3 1) 2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ~ Reverses all bits (~ 3) -4",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Operators that work on truth values:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF Conditional evaluation (if (1) 2 3) 2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Operators can also be names of Kermit macros that return either numeric",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"values or no value at all.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Built-in constants are:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" t True (1)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" nil False (empty)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" pi The value of Pi (3.1415926...)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If SET SEXPRESSION ECHO-RESULT is AUTO (the default), the value of the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"S-Expression is printed if the S-Expression is given at top level; if ON,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"it is printed at any level; if OFF it is not printed. At all levels, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"variable \\v(sexpression) is set to the most recent S-Expression, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\v(svalue) is set to its value. You can use the \\fsexpresssion() function",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"to evaluate an S-Expression anywhere in a Kermit command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSEXP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxgrep[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIXOROSK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: GREP [ options ] pattern filespec",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FIND [ options ] pattern filespec",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIXOROSK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Searches through the given file or files for the given character string",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or pattern. In the normal case, all lines containing any text that matches"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the pattern are printed. Pattern syntax is as described in HELP PATTERNS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" except that '*' is implied at the beginning unless the pattern starts with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" '^' and also at the end unless the pattern ends with '$'. Therefore,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"grep something *.txt\" lists all lines in all *.txt files that contain",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the word \"something\", but \"grep ^something *.txt\" lists only the lines",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that START with \"something\". The command succeeds if any of the given",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files contained any lines that match the pattern, otherwise it fails.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIXOROSK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonym: FIND.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonym: GREP.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIXOROSK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"File selection options:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOBACKUPFILES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Excludes backup files (like oofa.txt.~3~) from the search.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /DOTFILES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Includes files whose names start with dot (.) in the search.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NODOTFILES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Excludes files whose names start with dot (.) from the search.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RECURSIVE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /RECURSIVE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Searches through files in subdirectories too.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RECURSIVE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TYPE:TEXT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Search only text files (requires FILE SCAN ON).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TYPE:BINARY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Search only binary files (requires FILE SCAN ON).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Pattern-matching options:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOCASE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Ignores case of letters (ASCII only) when comparing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOMATCH",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Searches for lines that do NOT match the pattern.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /EXCEPT:pattern",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Exclude lines that match the main pattern that also match this pattern.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Display options:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /COUNT:variable-name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For each file, prints only the filename and a count of matching lines",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and assigns the total match count to the variable, if one is given.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NAMEONLY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Prints the name of each file that contains at least one matching line,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" one name per line, rather than showing each matching line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOLIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Doesn't print anything (but sets SUCCESS or FAILURE appropriately).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /LINENUMBERS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Precedes each file line by its line number within the file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Pauses after each screenful.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOPAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Doesn't pause after each screenful.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /OUTPUT:name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sends results to the given file. If this switch is omitted, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" results appear on your screen. This switch overrides any express or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" implied /PAGE switch.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxdir[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DOMYDIR
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: DIRECTORY [ switches ] [ filespec [ filespec [ ... ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef LOCUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If LOCUS is REMOTE or LOCUS is AUTO and you have an FTP connection,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" this command is equivalent to REMOTE DIRECTORY (RDIR). Otherwise:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* LOCUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lists local files. The filespec may be a filename, possibly containing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" wildcard characters, or a directory name. If no filespec is given, all",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files in the current directory are listed. If a directory name is given,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" all the files in it are listed. Multiple filespecs can be given.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Optional switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /BRIEF List filenames only.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_PERMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /VERBOSE + Also list permissions, size, and date.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /VERBOSE + Also list date and size.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_PERMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /FILES Show files but not directories.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /DIRECTORIES Show directories but not files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ALL + Show both files and directories.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ARRAY:&a Store file list in specified array (e.g. \\%a[]).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PAGE Pause after each screenful.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOPAGE Don't pause after each screenful.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIXOROSK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /DOTFILES Include files whose names start with dot (period).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NODOTFILES + Don't include files whose names start with dot.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /FOLLOWLINKS Follow symbolic links.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOFOLLOWLINKS + Don't follow symbolic links.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /BACKUP + Include backup files (names end with .~n~).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOBACKUPFILES Don't include backup files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIXOROSK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /OUTPUT:file Store directory listing in the given file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /HEADING Include heading and summary.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOHEADING + Don't include heading or summary.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SUMMARY Print only count and total size of matching files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /XFERMODE Show pattern-based transfer mode (T=Text, B=Binary).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TYPE: Show only files of the specified type (text or binary).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /MESSAGE:text Add brief message to each listing line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOMESSAGE + Don't add message to each listing line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOXFERMODE + Don't show pattern-based transfer mode",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ISODATE + In verbose listings, show date in ISO 8061 format.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ENGLISHDATE In verbose listings, show date in \"English\" format.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RECURSIVE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /RECURSIVE Descend through subdirectories.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NORECURSIVE + Don't descend through subdirectories.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RECURSIVE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SORT:key Sort by key, NAME, DATE, or SIZE; default key is NAME.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOSORT + Don't sort.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ASCENDING + If sorting, sort in ascending order.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /REVERSE If sorting, sort in reverse order.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Factory defaults are marked with +. Default for paging depends on SET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"COMMAND MORE-PROMPTING. Use SET OPTIONS DIRECTORY [ switches ] to change",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"defaults; use SHOW OPTIONS to display customized defaults.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: DIRECTORY [ filespec ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lists the specified file or files. If no filespec is given, all files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in the current directory are listed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DOMYDIR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxkcd[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: KCD symbolic-directory-name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit Change Directory: Like CD (q.v.) but (a) always acts locally, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (b) takes a symbolic directory name rather than an actual directory name.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The symbolic names correspond to Kermit's directory-valued built-in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" variables, such as \\v(download), \\v(exedir), and so on. Here's the list:"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" appdata Your personal Kermit 95 application data directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" common Kermit 95's application data directory for all users",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" desktop Your Windows desktop",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" download Your download directory (if any)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2ORUNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" exedir The directory where the Kermit executable resides",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2ORUNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" home Your home, login, or default directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" inidir The directory where Kermit's initialization was found",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" lockdir The UNIX UUCP lockfile directory on this computer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" personal Your \"My Documents\" directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" startup Your current directory at the time Kermit started",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" textdir The directory where Kermit text files reside, if any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" tmpdir Your temporary directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also see CD, SET FILE DOWNLOAD, SET TEMP-DIRECTORY.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxcwd[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef LOCUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If LOCUS is REMOTE or LOCUS is AUTO and you have an FTP connection,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" this command is equivalent to REMOTE CD (RCD). Otherwise:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* LOCUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef vms
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: CD [ directory or device:directory ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Change Working Directory. Equivalent to VMS SET DEFAULT command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef datageneral
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Change Working Directory, equivalent to AOS/VS 'dir' command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: CD [ disk or directory name ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Change Disk or Directory. If a disk or directory name is not specified,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" your current directory becomes the one specified by HOME environment",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" variable, if any. A disk letter must be followed by a colon.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: CD [ directory name ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Change Directory. Changes your current, working, default directory to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" one given, so that future non-absolute filename references are relative to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" this directory. If the directory name is omitted, your home (login)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory is supplied.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* datageneral */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* vms */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C-Kermit's default prompt shows your current directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonyms: LCD, CWD.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef LOCUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also see: SET LOCUS, PWD, CDUP, BACK, REMOTE CD (RCD), SET CD, SET PROMPT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also see: PWD, CDUP, BACK, REMOTE CD (RCD), SET CD, SET PROMPT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* LOCUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" And see: HELP KCD.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Relevant environment variables: CDPATH, HOME.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxdel[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: DELETE [ switches... ] filespec",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef LOCUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If LOCUS is REMOTE or LOCUS is AUTO and you have an FTP connection,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" this command is equivalent to REMOTE DELETE (RDELETE). Otherwise:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* LOCUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Deletes a file or files on the computer where C-Kermit is running.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The filespec may denote a single file or can include wildcard characters",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to match multiple files. RM is a synonym for DELETE. Switches include:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/AFTER:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files created after the given date-time are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified after the given date-time are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be deleted. HELP DATE for info about date-time formats.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/BEFORE:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be deleted.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOT-AFTER:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be deleted.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOT-BEFORE:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or after the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or after the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be deleted.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LARGER-THAN:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files longer than the given number of bytes are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be deleted.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/SMALLER-THAN:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files smaller than the given number of bytes are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/EXCEPT:pattern",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that any files whose names match the pattern, which can be a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" regular filename or may contain wildcards, are not to be deleted. To",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specify multiple patterns (up to 8), use outer braces around the group",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and inner braces around each pattern:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /EXCEPT:{{pattern1}{pattern2}...}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIXOROSK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/DOTFILES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include (delete) files whose names begin with \".\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NODOTFILES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Skip (don't delete) files whose names begin with \".\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIXOROSK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TYPE:TEXT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Delete only regular text files (requires FILE SCAN ON)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TYPE:BINARY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Delete only regular binary files (requires FILE SCAN ON)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/DIRECTORIES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include directories. If this switch is not given, only regular files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are deleted. If it is given, Kermit attempts to delete any directories",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that match the given file specification, which succeeds only if the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory is empty.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RECURSIVE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RECURSIVE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The DELETE command applies to the entire directory tree rooted in the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current or specified directory. When the /DIRECTORIES switch is also",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" given, Kermit deletes all the (matching) files in each directory before",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" attempting to delete the directory itself.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RECURSIVE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RECURSIVE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/ALL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This is a shortcut for /RECURSIVE /DIRECTORIES /DOTFILES.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/ALL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This is a shortcut for /DIRECTORIES /DOTFILES.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RECURSIVE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* !UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RECURSIVE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/ALL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This is a shortcut for /RECURSIVE /DIRECTORIES.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/ALL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This is a synonym for /DIRECTORIES.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RECURSIVE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" List each file and tell whether it was deleted. Synonyms: /LOG, /VERBOSE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOLIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Don't list files while deleting. Synonyms: /NOLOG, /QUIET.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/HEADING",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Print heading and summary information.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOHEADING",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Don't print heading and summary information.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/SUMMARY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Like /HEADING /NOLIST, but only prints the summary line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If listing, pause after each screenful.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOPAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Don't pause after each screenful.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/ASK",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Interactively ask permission to delete each file. Reply Yes or OK to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" delete it, No not to delete it, Quit to cancel the DELETE command, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Go to go ahead and delete all the rest of the files without asking.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOASK",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Delete files without asking permission.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/SIMULATE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Preview files selected for deletion without actually deleting them.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Implies /LIST.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Use SET OPTIONS DELETE to make selected switches effective for every DELETE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"command \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
unless you override them; use SHOW OPTIONS to see selections currently",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef LOCUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"in effect. Also see HELP SET LOCUS, HELP PURGE, HELP WILDCARD.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"in effect. Also see HELP PURGE, HELP WILDCARD.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* LOCUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHTTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxhttp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SSL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP [ <switches> ] OPEN [{ /SSL, /TLS }] <hostname> <service/port>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP [ <switches> ] OPEN <hostname> <service/port>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /*CK_SSL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Instructs Kermit to open a new connection for HTTP communication with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the specified host on the specified port. The default port is \"http\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SSL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If /SSL or /TLS are specified or if the service is \"https\" or port 443,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a secure connection will be established using the current authentication",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" settings. See HELP SET AUTH for details.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SSL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If <switches> are specified, they are applied to all subsequent HTTP",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" actions (GET, PUT, ...) until an HTTP CLOSE command is executed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" A URL can be included in place of the hostname and service or port.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP CLOSE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Instructs Kermit to close any open HTTP connection and clear any saved",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" switch values.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP [ <switches> ] CONNECT <host>[:<port>]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Instructs the server to establish a connection with the specified host",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and to redirect all data transmitted between Kermit and the host for the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" life of the connection.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP [ <switches> ] GET <remote-filename> [ <local-filename> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Retrieves the named file on the currently open HTTP connection. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default local filename is the same as the remote filename, but with any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" path stripped. If you want the file to be displayed on the screen instead",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of stored on disk, include the /TOSCREEN switch and omit the local",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" filename. If you give a URL instead of a remote filename, this commands",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" opens the connection, GETs the file, and closes the connection; the same",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is true for the remaining HTTP commands for which you can specify a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" remote filename, directory name, or path.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP [ <switches> ] HEAD <remote-filename> [ <local-filename> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Like GET except without actually getting the file; instead it gets only",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the headers, storing them into the given file (if a local filename is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specified), one line per header item as shown in the /ARRAY: switch",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" description.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP [ <switches> ] INDEX <remote-directory> [ <local-filename> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Retrieves the file listing for the given server directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NOTE: This command is not supported by most Web servers, and even when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the server understand it, there is no stardard response format.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP [ <switches> ] POST [ /MIME-TYPE:<type> ] <local-file> <remote-path>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" [ <dest-file> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Used to send a response as if it were sent from a form. The data to be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" posted must be read from a file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP [ <switches> ] PUT [ /MIME-TYPE:<type> ] <local-file> <remote-file>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" [ <dest-file> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Uploads the given local file to server file. If the remote filename is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" omitted, the local name is used, but with any path stripped.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"HTTP [ <switches> ] DELETE <remote-filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Instructs the server to delete the specified filename.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"where <switches> are:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/AGENT:<user-agent>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Identifies the client to the server; \"C-Kermit\" or \"Kermit-95\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/HEADER:<header-line>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Used for specifying any optional headers. A list of headers is provided",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" using braces for grouping:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /HEADER:{{<tag>:<value>}{<tag>:<value>}...}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For a listing of valid <tag> value and <value> formats see RFC 1945:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"Hypertext Transfer Protocol -- HTTP/1.0\". A maximum of eight headers",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" may be specified.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TOSCREEN",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Display server responses on the screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/USER:<name>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" In case a page requires a username for access.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PASSWORD:<password>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" In case a page requires a password for access.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/ARRAY:<arrayname>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit to store the response headers in the given array, one line",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" per element. The array need not be declared in advance. Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" http /array:c get kermit/index.html",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" show array c",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Dimension = 9",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 1. Date: Fri, 26 Nov 1999 23:12:22 GMT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 2. Server: Apache/1.3.4 (Unix)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 3. Last-Modified: Mon, 06 Sep 1999 22:35:58 GMT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 4. ETag: \"bc049-f72-37d441ce\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 5. Accept-Ranges: bytes",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 6. Content-Length: 3954",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 7. Connection: close ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 8. Content-Type: text/html",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"As you can see, the header lines are like MIME e-mail header lines:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"identifier, colon, value. The /ARRAY switch is the only method available",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"to a script to process the server responses for a POST or PUT command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHTTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_KERBEROS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxauth[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"AUTHENTICATE { KERBEROS4, KERBEROS5 [ switches ] } <action> [ switches ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Obtains or destroys Kerberos tickets and lists information about them.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Actions are INITIALIZE, DESTROY, and LIST-CREDENTIALS. KERBEROS4 can be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" abbreviated K4 or KRB4; KERBEROS5 can be abbreviated K5 or KRB5. Use ? to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" see which keywords, switches, or other quantities are valid at each point",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in the command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The actions are INITIALIZE, DESTROY, and LIST-CREDENTIALS:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTH { K4, K5 } { INITIALIZE [switches], DESTROY,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LIST-CREDENTIALS [switches] }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The INITIALIZE action is the most complex, and its format is different",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for Kerberos 4 and Kerberos 5. The format for Kerberos 4 is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTH K4 INITIALIZE [ /INSTANCE:<name> /LIFETIME:<minutes> -",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PASSWORD:<password> /PREAUTH /REALM:<name> <principal> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" All switches are optional. Kerberos 4 INITIALIZE switches are:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /INSTANCE:<name>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows an Instance (such as a hostname) to be specified.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /LIFETIME:<number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the requested lifetime in minutes for the ticket. If no",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" lifetime is specified, 600 minutes is used. If the lifetime is greater",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" than the maximum supported by the ticket granting service, the resulting",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" lifetime is shortened accordingly.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOT-PREAUTH",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Instructs Kermit to send a ticket getting ticket (TGT) request to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KDC without any preauthentication data.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PASSWORD:<string>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows a password to be included on the command line or in a script",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" file. If no /PASSWORD switch is included, you are prompted on a separate"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" line. The password switch is provided on a use-at-your-own-risk basis",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for use in automated scripts. WARNING: Passwords should not be stored in"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PREAUTH",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Instructs Kermit to send a preauthenticated Ticket-Getting Ticket (TGT)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" request to the KDC instead of a plaintext request. The default when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" supported by the Kerberos libraries.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /REALM:<name>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows a realm to be specified (overriding the default realm).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <principal>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Your identity in the given or default Kerberos realm, of the form:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" userid[.instance[.instance]]@[realm] ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Can be omitted if it is the same as your username or SET LOGIN USERID",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" value on the client system.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The format for Kerberos 5 is as follows:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTH K5 [ /CACHE:<filename> ] { INITIALIZE [ switches ], DESTROY,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LIST-CREDENTIALS ...}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The INITIALIZE command for Kerberos 5 can include a number of switches;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"all are optional:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"AUTH K5 [ /CACHE:<filename> ] INITITIALIZE [ /ADDRESSES:<addr-list>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /FORWARDABLE /KERBEROS4 /LIFETIME:<minutes> /PASSWORD:<password>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /POSTDATE:<date-time> /PROXIABLE /REALM:<name> /RENEW /RENEWABLE:<minutes>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SERVICE:<name> /VALIDATE <principal> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" All Kerberos 5 INITIALIZE switches are optional:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ADDRESSES:{list of ip-addresses}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a list of IP addresses that should be placed in the Ticket",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Getting Ticket in addition to the local machine addresses.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /FORWARDABLE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Requests forwardable tickets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /INSTANCE:<name>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows an Instance (such as a hostname) to be specified.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /KERBEROS4",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Instructs Kermit to get Kerberos 4 tickets in addition to Kerberos 5",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" tickets. If Kerberos 5 tickets are not supported by the server, a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" mild warning is printed and Kerberos 4 tickets are requested.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /LIFETIME:<number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the requested lifetime in minutes for the ticket. If no",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" lifetime is specified, 600 minutes is used. If the lifetime is greater",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" than the maximum supported by the ticket granting service, the resulting",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" lifetime is shortened.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NO-KERBEROS4",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Instructs Kermit to not attempt to retrieve Kerberos 4 credentials.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOT-FORWARDABLE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Requests non-forwardable tickets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOT-PROXIABLE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Requests non-proxiable tickets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PASSWORD:<string>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows a password to be included on the command line or in a script",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" file. If no /PASSWORD switch is included, you are prompted on a separate"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" line. The password switch is provided on a use-at-your-own-risk basis",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for use in automated scripts. WARNING: Passwords should not be stored in"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /POSTDATE:<date-time>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Requests a postdated ticket, valid starting at <date-time>. Postdated",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" tickets are issued with the invalid flag set, and need to be fed back to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the KDC before use with the /VALIDATE switch. Type HELP DATE for info",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" on date-time formats.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PROXIABLE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Requests proxiable tickets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /REALM:<string>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows an alternative realm to be specified.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /RENEW",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Requests renewal of a renewable Ticket-Granting Ticket. Note that ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" an expired ticket cannot be renewed even if it is within its renewable ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" lifetime.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /RENEWABLE:<number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Requests renewable tickets, with a total lifetime of <number> minutes.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SERVICE:<string>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows a service other than the ticket granting service to be specified.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /VALIDATE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Requests that the Ticket Granting Ticket in the cache (with the invalid",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" flag set) be passed to the KDC for validation. If the ticket is within",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" its requested time range, the cache is replaced with the validated",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ticket.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <principal>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Your identity in the given or default Kerberos realm, of the form:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" userid[/instance][@realm] ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Can be omitted if it is the same as your username or SET LOGIN USERID",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" value on the client system.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Note: Kerberos 5 always attempts to retrieve a Ticket-Getting Ticket (TGT)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" using the preauthenticated TGT request.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTHORIZE K5 LIST-CREDENTIALS [ /ADDRESSES /FLAGS /ENCRYPTION ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Shows start time, expiration time, service or principal name, plus",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the following additional information depending the switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ADDRESSES displays the hostnames and/or IP addresses embedded within",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the tickets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /FLAGS provides the following information (if applicable) for each ticket:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" F - Ticket is Forwardable",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" f - Ticket was Forwarded",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" P - Ticket is Proxiable",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" p - Ticket is a Proxy",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" D - Ticket may be Postdated",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" d - Ticket has been Postdated",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" i - Ticket is Invalid",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" R - Ticket is Renewable",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" I - Ticket is the Initial Ticket",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" H - Ticket has been authenticated by Hardware",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" A - Ticket has been Pre-authenticated",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ENCRYPTION displays the encryption used by each ticket (if applicable):",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DES-CBC-CRC",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DES-CBC-MD4",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DES-CBC-MD5",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DES3-CBC-SHA",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_KERBEROS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxassoc[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ASSOCIATE FILE-CHARACTER-SET <file-character-set> <transfer-character-set>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells C-Kermit that whenever the given file-character set is selected, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SEND CHARACTER-SET (q.v.) is AUTOMATIC, the given transfer character-set",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is selected automatically.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ASSOCIATE XFER-CHARACTER-SET <xfer-character-set> <file-character-set>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells C-Kermit that whenever the given transfer-character set is selected,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" either by command or by an announcer attached to an incoming text file,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and SEND CHARACTER-SET is AUTOMATIC, the specified file character-set is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be selected automatically. Synonym: ASSOCIATE TRANSFER-CHARACTER-SET.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Use SHOW ASSOCIATIONS to list the current character-set associations, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SHOW CHARACTER-SETS to list the current settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxpat[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"A \"pattern\" is notation used in a search string when searching through",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"text. C-Kermit uses three kinds of patterns: floating patterns, anchored",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"patterns, and wildcards. Wildcards are anchored patterns that are used to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"match file names; type HELP WILDCARD to learn about them.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"In a pattern, certain characters are special:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"* Matches any sequence of zero or more characters. For example, \"k*t\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" matches all strings that start with \"k\" and end with \"t\" including",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"kt\", \"kit\", \"knight\", or \"kermit\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"% Matches any single character. For example, \"k%%%%t\" matches all strings",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"? Matches any single character. For example, \"k????t\" matches all strings",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that are exactly 6 characters long and start with \"k\" and end with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with \"t\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with \"t\". When typing commands at the prompt, you must precede any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" question mark to be used for matching by a backslash (\\) to override the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" normal function of question mark in interactive commands, which is to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" provide menus and file lists.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2ORUNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKREGEX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"[abc]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Square brackets enclosing a list of characters matches any character in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the list. Example: h[aou]t matches hat, hot, and hut.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"[a-z]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Square brackets enclosing a range of characters matches any character in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the range; a hyphen (-) separates the low and high elements of the range.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For example, [a-z] matches any character from a to z.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"[acdm-z]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lists and ranges may be combined. This example matches a, c, d, or any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" letter from m through z.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"{string1,string2,...}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Braces enclose a list of strings to be matched. For example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ker{mit,nel,beros} matches kermit, kernel, and kerberos. The strings",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" may themselves contain *, ?, [abc], [a-z], or other lists of strings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKREGEX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2ORUNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To force a special pattern character to be taken literally, precede it with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"a backslash, e.g. [a\\-z] matches a, hyphen, or z rather than a through z.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"A floating pattern can also include the following special characters:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"^ (First character of pattern) Anchors the pattern at the beginning.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"$ (Last character of pattern) Anchors the pattern at the end.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If a floating pattern does not start with \"^\", the pattern can match",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"anywhere in the string instead of only at the beginning; in other words, a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"leading \"*\" is assumed. Similarly, if the pattern doesn't end with \"$\",",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"a trailing \"*\" is assumed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The following commands and functions use floating patterns:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" GREP [ <switches> ] <pattern> <filespec>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TYPE /MATCH:<pattern> <file>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\farraylook(<pattern>,<arrayname>)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\fsearch(<pattern>,<string>[,<offset>])",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\frsearch(<pattern>,<string>[,<offset>])",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The /EXCEPT: clause in SEND, GET, DELETE, etc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\fsearch(abc,xxabcxxx) succeeds because xxabcxx contains abc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\fsearch(^abc,xxabcxx) fails because xxabcxx does not start with abc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"All other commands and functions use anchored patterns, meaning that ^ and $",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"are not treated specially, and * is not assumed at the beginning or end of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the pattern. This is true mainly of filename patterns (wildcards), since",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"you would not want a command like \"delete x\" to delete all files whose",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"names contained \"x\"!",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"You can use anchored patterns not only in filenames, but also in SWITCH",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"case labels, in the INPUT and MINPUT commands, and in file binary- and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"text-patterns for filenames. The IF MATCH pattern is also anchored.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxwild[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"A \"wildcard\" is a notation used in a filename to match multiple files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"For example, in \"send *.txt\" the asterisk is a wildcard. Kermit commands",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"that accept filenames also accepts wildcards, except commands that are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"allowed to operate on only one file, such as TRANSMIT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"This version of Kermit accepts the following wildcards:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"* Matches any sequence of zero or more characters. For example, \"ck*.c\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" matches all files whose names start with \"ck\" and end with \".c\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" including \"ck.c\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"% Matches any single character. For example, \"ck%.c\" matches all files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"? Matches any single character. For example, \"ck?.c\" matches all files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" whose names are exactly 5 characters long and start with \"ck\" and end",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with \".c\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with \".c\". When typing commands at the prompt, you must precede any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" question mark to be used for matching by a backslash (\\) to override the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" normal function of question mark in interactive commands, which is to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" provide menus and file lists. You don't, however, need to quote filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" question marks in command files (script programs).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2ORUNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKREGEX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"[abc]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Square brackets enclosing a list of characters matches any character in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the list. Example: ckuusr.[ch] matches ckuusr.c and ckuusr.h.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"[a-z]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Square brackets enclosing a range of characters matches any character in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the range; a hyphen (-) separates the low and high elements of the range.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For example, [a-z] matches any character from a to z.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"[acdm-z]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lists and ranges may be combined. This example matches a, c, d, or any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" letter from m through z.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"{string1,string2,...}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Braces enclose a list of strings to be matched. For example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ck{ufio,vcon,cmai}.c matches ckufio.c, ckvcon.c, or ckcmai.c. The strings",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" may themselves contain *, ?, [abc], [a-z], or other lists of strings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKREGEX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2ORUNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"To force a special pattern character to be taken literally, precede it with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"a backslash, e.g. [a\\-z] matches a, hyphen, or z rather than a through z.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Or tell Kermit to SET WILDCARD-EXPANSION OFF before entering or referring",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"to the filename.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Similar notation can be used in general-purpose string matching. Type HELP",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"PATTERNS for details. Also see HELP SET MATCH.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxfast[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"FAST, CAUTIOUS, and ROBUST are predefined macros that set several",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"file-transfer parameters at once to achieve the desired file-transfer goal.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"FAST chooses a large packet size, a large window size, and a fair amount of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"control-character unprefixing at the risk of possible failure on some",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"connections. FAST is the default tuning in C-Kermit 7.0 and later. In case",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"FAST file transfers fail for you on a particular connection, try CAUTIOUS.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If that fails too, try ROBUST. You can also change the definitions of each",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"macro with the DEFINE command. To see the current definitions, type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\"show macro fast\", \"show macro cautious\", or \"show macro robust\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxxpurge[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: PURGE [ switches ] [ filespec ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Runs the DCL PURGE command. Switches and filespec are not parsed or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" verified by Kermit, but passed directly to DCL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKPURGE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxxpurge[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: PURGE [ switches ] [ filespec ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Deletes backup files; that is, files whose names end in \".~n~\", where",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" n is a number. PURGE by itself deletes all backup files in the current",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory. Switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/AFTER:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files created after the given date-time are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified after the given date-time are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be purged. HELP DATE for info about date-time formats.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/BEFORE:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be purged.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOT-AFTER:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be purged.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOT-BEFORE:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or after the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or after the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be purged.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LARGER-THAN:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files longer than the given number of bytes are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be purged.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/SMALLER-THAN:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files smaller than the given number of bytes are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be purged.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/EXCEPT:pattern",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that any files whose names match the pattern, which can be a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" regular filename or may contain wildcards, are not to be purged. To",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specify multiple patterns (up to 8), use outer braces around the group",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and inner braces around each pattern:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /EXCEPT:{{pattern1}{pattern2}...}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIXOROSK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/DOTFILES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include (purge) files whose names begin with \".\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NODOTFILES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Skip (don't purge) files whose names begin with \".\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIXOROSK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RECURSIVE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RECURSIVE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Descends through the current or specified directory tree.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RECURSIVE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/KEEP:n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Retain the 'n' most recent (highest-numbered) backup files for each file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" By default, none are kept. If /KEEP is given without a number, 1 is used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Display each file as it is processed and say whether it is purged or kept.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonyms: /LOG, /VERBOSE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOLIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The PURGE command should operate silently (default).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonyms: /NOLOG, /QUIET.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/HEADING",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Print heading and summary information.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOHEADING",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Don't print heading and summary information.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When /LIST is in effect, pause at the end of each screenful, even if",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" COMMAND MORE-PROMPTING is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOPAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Don't pause, even if COMMAND MORE-PROMPTING is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/ASK",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Interactively ask permission to delete each backup file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOASK",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Purge backup files without asking permission.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/SIMULATE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Inhibits the actual deletion of files; use to preview which files would",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" actually be deleted. Implies /LIST.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Use SET OPTIONS PURGE [ switches ] to change defaults; use SHOW OPTIONS to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"display customized defaults. Also see HELP DELETE, HELP WILDCARD.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKPURGE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxclo[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: CLOSE [ item ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Close the indicated item. The default item is CONNECTION, which is the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current SET LINE or SET HOST connection. The other items are:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKLOGDIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CX-LOG (connection log, opened with LOG CX)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKLOGDIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SESSION-LOG (opened with LOG SESSION)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TLOG
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TRANSACTION-LOG (opened with LOG TRANSACTIONS)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TLOG */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PACKET-LOG (opened with LOG PACKETS)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DEBUG
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEBUG-LOG (opened with LOG DEBUG)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DEBUG */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" READ-FILE (opened with OPEN READ)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" WRITE-FILE (opened with OPEN WRITE or OPEN APPEND)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Type HELP LOG and HELP OPEN for further info.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKLEARN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxxlearn[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: LEARN [ /ON /OFF /CLOSE ] [ filename ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Records a login script. If you give a filename, the file is opened for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" subsequent recording. If you don't give any switches, /ON is assumed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ON enables recording to the current file (if any); /OFF disables",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" recording. /CLOSE closes the current file (if any). After LEARN /CLOSE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or exit from Kermit, your script is available for execution by the TAKE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKLEARN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_MINPUT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxminp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: MINPUT [ switches ] n [ string1 [ string2 [ ... ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Example: MINPUT 5 Login: {Username: } {NO CARRIER} BUSY RING",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For use in script programs. Waits up to n seconds for any one of the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" strings to arrive on the communication device. If no strings are given,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the command waits for any character at all to arrive. Strings are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" separated by spaces; use {braces} or \"doublequotes\" for grouping. If",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" any of the strings is encountered within the timeout interval, the command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" succeeds and the \\v(minput) variable is set to the number of the string",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that was matched: 1, 2, 3, etc. If none of the strings arrives, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command times out, fails, and \\v(minput) is set to 0. In all other",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" respects, MINPUT is like INPUT. See HELP INPUT for the available switches",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and other details of operation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_MINPUT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxcon[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: CONNECT (or C, or CQ) [ switches ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Connect to a remote computer via the serial communications device given in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the most recent SET PORT command, or to the network host named in the most",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the most recent SET LINE command, or to the network host named in the most",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" recent SET HOST command. Type the escape character followed by C to get",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" back to the C-Kermit prompt, or followed by ? for a list of CONNECT-mode",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" escape commands. You can also assign the \\Kexit verb to the key or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" key-combination of your choice; by default it is assigned to Alt-x.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" escape commands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Include the /QUIETLY switch to suppress the informational message that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"tells you how to escape back, etc. CQ is a synonym for CONNECT /QUIETLY.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Other switches include:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TRIGGER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TRIGGER:string",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" One or more strings to look for that will cause automatic return to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command mode. To specify one string, just put it right after the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" colon, e.g. \"/TRIGGER:Goodbye\". If the string contains any spaces, you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" must enclose it in braces, e.g. \"/TRIGGER:{READY TO SEND...}\". To",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specify more than one trigger, use the following format:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TRIGGER:{{string1}{string2}...{stringn}}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Upon return from CONNECT mode, the variable \\v(trigger) is set to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" trigger string, if any, that was actually encountered. This value, like",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" all other CONNECT switches applies only to the CONNECT command with which",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it is given, and overrides (temporarily) any global SET TERMINAL TRIGGER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" string that might be in effect.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TRIGGER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/IDLE-LIMIT:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The number of seconds of idle time, after which Kermit returns",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" automatically to command mode; default 0 (no limit).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/IDLE-INTERVAL:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The number of seconds of idle time, after which Kermit automatically",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transmits the idle string.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/IDLE-STRING:string",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The string to transmit whenever the idle interval has passed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TIME-LIMIT:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The maximum number of seconds for which the CONNECT session may last.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default is 0 (no limit). If a nonzero number is given, Kermit returns",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" automatically to command mode after this many seconds.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxmget[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: MGET [ switches... ] remote-filespec [ remote-filespec ... ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Just like GET (q.v.) except allows a list of remote file specifications,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"separated by spaces.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxget[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: GET [ switches... ] remote-filespec [ as-name ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells the other Kermit, which must be in (or support autoswitching into)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" server mode, to send the named file or files. If the remote-filespec or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the as-name contain spaces, they must be enclosed in braces. If as-name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is the name of an existing local directory, incoming files are placed in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that directory; if it is the name of directory that does not exist, Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" tries to create it. Optional switches include:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/AS-NAME:text",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies \"text\" as the name to store the incoming file under, or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory to store it in. You can also specify the as-name as the second",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" filename on the GET command line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/BINARY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Performs this transfer in binary mode without affecting the global",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfer mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/COMMAND",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Receives the file into the standard input of a command, rather than saving",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it on disk. The /AS-NAME or the second \"filename\" on the GET command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" line is interpreted as the name of a command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/DELETE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Asks the other Kermit to delete the file (or each file in the group)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" after it has been transferred successfully.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/EXCEPT:pattern",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that any files whose names match the pattern, which can be a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" regular filename, or may contain \"*\" and/or \"?\" metacharacters,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be refused. To specify multiple patterns (up to 8), use outer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" braces around the group, and inner braces around each pattern:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /EXCEPT:{{pattern1}{pattern2}...}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/FILENAMES:{CONVERTED,LITERAL}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Overrides the global SET FILE NAMES setting for this transfer only.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/FILTER:command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Causes the incoming file to passed through the given command (standard",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" input/output filter) before being written to disk.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/IMAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Transfer in image mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_LABELED
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LABELED",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" VMS and OS/2 only: Specifies labeled transfer mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_LABELED */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/MOVE-TO:directory-name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that each file that arrives should be moved to the specified",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory after, and only if, it has been received successfully.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PATHNAMES:{OFF,ABSOLUTE,RELATIVE,AUTO}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Overrides the global SET RECEIVE PATHNAMES setting for this transfer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PIPES:{ON,OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Overrides the TRANSFER PIPES setting for this command only. ON allows",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" reception of files with names like \"!tar xf -\" to be automatically",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directed to a pipeline.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/QUIET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When sending in local mode, this suppresses the file-transfer display.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RECOVER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Used to recover from a previously interrupted transfer; GET /RECOVER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is equivalent REGET. Works only in binary mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RECURSIVE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells the server to descend through the directory tree when locating",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the files to be sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RENAME-TO:string",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that each file that arrives should be renamed as specified",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" after, and only if, it has been received successfully. The string should",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" normally contain variables like \\v(filename) or \\v(filenum).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TEXT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Performs this transfer in text mode without affecting the global",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfer mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TRANSPARENT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Inhibits character-set translation of incoming text files for the duration",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of the GET command without affecting subsequent commands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see HELP MGET, HELP SEND, HELP RECEIVE, HELP SERVER, HELP REMOTE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxlg[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: LOG (or L) log-type [ filename [ { NEW, APPEND } ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Record information in a log file:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKLOGDIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"CX",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Connections made with SET LINE, SET PORT, SET HOST, DIAL, TELNET, etc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default filename is CX.LOG in your home directory and APPEND is the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default mode for opening.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKLOGDIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DEBUG
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"DEBUG",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Debugging information, to help track down bugs in the C-Kermit program.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default log name is debug.log in current directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DEBUG */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"PACKETS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit packets, to help with protocol problems. The default filename is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" packet.log in current directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SESSION",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Records your CONNECT session (default: session.log in current directory).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TLOG
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"TRANSACTIONS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Names and statistics about files transferred (default: transact.log in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current directory; see HELP SET TRANSACTION-LOG for transaction-log format",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" options.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TLOG */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If you include the APPEND keyword after the filename, the existing log file,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"if any, is appended to; otherwise a new file is created (except APPEND is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the default for the connection log). Use CLOSE <keyword> to stop logging.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2ORUNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Note: The filename can also be a pipe, e.g.:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" log transactions |lpr",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" log debug {| grep \"^TELNET\" > debug.log}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Braces are required if the pipeline or filename contains spaces.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2ORUNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSCRIPT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxlogi[] = { "\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Syntax: SCRIPT text",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" A limited and cryptic \"login assistant\", carried over from old C-Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" releases for comptability, but not recommended for use. Instead, please",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" use the full script programming language described in chapters 17-19 of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"Using C-Kermit\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Login to a remote system using the text provided. The login script",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is intended to operate similarly to UNIX uucp \"L.sys\" entries.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" A login script is a sequence of the form:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" expect send [expect send] . . .",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" where 'expect' is a prompt or message to be issued by the remote site, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 'send' is the names, numbers, etc, to return. The send may also be the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" keyword EOT to send Control-D, or BREAK (or \\\\b) to send a break signal.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Letters in send may be prefixed by ~ to send special characters:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ~b backspace, ~s space, ~q '?', ~n linefeed, ~r return, ~c don\'t",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" append a return, and ~o[o[o]] for octal of a character. As with some",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UUCP systems, sent strings are followed by ~r unless they end with ~c.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Only the last 7 characters in each expect are matched. A null expect,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" e.g. ~0 or two adjacent dashes, causes a short delay. If you expect",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that a sequence might not arrive, as with uucp, conditional sequences",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" may be expressed in the form:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" -send-expect[-send-expect[...]]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" where dashed sequences are followed as long as previous expects fail.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSCRIPT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxxtyp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: TYPE [ switches... ] file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Displays a file on the screen. Pauses automatically at end of each",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" screenful if COMMAND MORE-PROMPTING is ON. Optional switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Pause at the end of each screenful even if COMMAND MORE-PROMPTING OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonym: /MORE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOPAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Don't pause at the end of each screen even if COMMAND MORE-PROMPTING ON."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /HEAD:n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Only type the first 'n' lines of the file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TAIL:n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Only type the last 'n' lines of the file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /MATCH:pattern",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Only type lines that match the given pattern. HELP WILDCARDS for info",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" info about patterns. /HEAD and /TAIL apply after /MATCH.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PREFIX:string",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Print the given string at the beginning of each line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NUMBER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Add line numbers (conflicts with /PREFIX)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /WIDTH:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Truncate each line at the given column number before printing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Or when combined with /GUI specifies the width of the dialog box.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /HEIGHT:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When combined with /GUI specifies the height of the dialog box.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /GUI:string",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the title to use for the dialog box.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /COUNT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Count lines (and matches) and print the count(s) but not the lines.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNICODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /CHARACTER-SET:name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Translates from the named character set.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TRANSLATE-TO:name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Translates to the named character set (default = current file charset).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TRANSPARENT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Inhibits character-set translation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNICODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /OUTPUT:name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sends results to the given file. If this switch is omitted, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" results appear on your screen. This switch overrides any express or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" implied /PAGE switch.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"You can use SET OPTIONS TYPE to set the defaults for /PAGE or /NOPAGE and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/WIDTH. Use SHOW OPTIONS to see current TYPE options.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxxcle[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: CLEAR [ item-name ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Clears the named item. If no item is named, DEVICE-AND-INPUT is assumed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ALARM Clears any pending alarm (see SET ALARM).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_APC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" APC-STATUS Clears Application Program Command status.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_APC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef PATTERNS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" BINARY-PATTERNS Clears the file binary-patterns list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* PATTERNS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" COMMAND-SCREEN Clears the current command screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEVICE Clears the current port or network input buffer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEVICE-AND-INPUT Clears both the device and the INPUT buffer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DIAL-STATUS Clears the \\v(dialstatus) variable.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
INPUT Clears the INPUT-command buffer and the \\v(input) variable.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KEYBOARD-BUFFER Clears the command terminal keyboard input buffer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
SCROLLBACK empties the scrollback buffer including the current screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SEND-LIST Clears the current SEND list (see ADD).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
TERMINAL-SCREEN Clears the current screen a places it into the scrollback.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" buffer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef PATTERNS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TEXT-PATTERNS Clears the file text-patterns list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* PATTERNS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxxdate[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: DATE [ date-time [ timezone ] ] [ delta-time ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Prints a date-time in standard format: yyyymmdd_hh:mm:ss.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Various date-time formats are accepted:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . The date, if given, must precede the time.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . The year must be four digits or else a 2-digit format dd mmm yy,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in which case if (yy < 50) yyyy = yy + 2000; else yyyy = yy + 1900.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . If the year comes first, the second field is the month.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . The day, month, and year may be separated by spaces, /, -, or underscore."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
," . The date and time may be separated by spaces or underscore.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . The month may be numeric (1 = January) or spelled out or abbreviated in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" English.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . The time may be in 24-hour format or 12-hour format.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . If the hour is 12 or less, AM is assumed unless AM or PM is included.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . If the date is omitted but a time is given, the current date is supplied."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . If the time is given but date omitted, 00:00:00 is supplied.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . If both the date and time are omitted, the current date and time are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" supplied.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The following shortcuts can also be used in place of dates:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TODAY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Today's date, optionally followed by a time; 00:00:00 if no time given.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" YESTERDAY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Yesterday's date, optionally followed by a time (default 00:00:00).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TOMORROW",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tomorrows's date, optionally followed by a time (default 00:00:00).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Timezone specifications are similar to those used in e-mail and HTTP",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" headers, either a USA timezone name, e.g. EST or a signed four-digit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" timezone offset, {+,-}hhmm, e.g., -0500; it is used to convert date-time,"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a local time in that timezone, to GMT which is then converted to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" local time at the host. If no timezone is given, the date-time is local."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Delta times are given as {+,-}[number date-units][hh[:mm[:ss]]]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" A date in the future/past relative to the date-time; date-units may be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DAYS, WEEKS, MONTHS, YEARS: +3days, -7weeks, +3:00, +1month 8:00.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"All the formats shown above are acceptable as arguments to date-time switches"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"such as /AFTER: or /BEFORE:, and to functions such as \\fcvtdate(),",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\fdiffdate(), and \\futcdate(), that take date-time strings as arguments.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxxsen[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SEND (or S) [ switches...] [ filespec [ as-name ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sends the file or files specified by filespec. If the filespec is omitted",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the SEND-LIST is used (HELP ADD for more info). The filespec may contain",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" wildcard characters. An 'as-name' may be given to specify the name(s)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the files(s) are sent under; if the as-name is omitted, each file is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" sent under its own name. Also see HELP MSEND, HELP WILDCARD.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Optional switches include:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/ARRAY:<arrayname>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that the data to be sent comes from the given array, such as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\&a[]. A range may be specified, e.g. SEND /ARRAY:&a[100:199]. Leave",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the brackets empty or omit them altogether to send the whole 1-based array."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include /TEXT to have Kermit supply a line terminator at the end of each",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" array element (and translate character sets if character-set translations",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are set up), or /BINARY to treat the array as one long string of characters"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be sent as-is. If an as-name is not specified, the array is sent with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the name _ARRAY_X_, where \"X\" is replaced by actual array letter.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/AS-NAME:<text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies <text> as the name to send the file under instead of its real",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name. This is equivalent to giving an as-name after the filespec.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/BINARY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Performs this transfer in binary mode without affecting the global",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfer mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TEXT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Performs this transfer in text mode without affecting the global",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfer mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TRANSPARENT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Inhibits character-set translation for text files for the duration of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the SEND command without affecting subsequent commands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOBACKUPFILES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Skip (don't send) Kermit or EMACS backup files (files with names that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" end with .~n~, where n is a number).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIXOROSK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/DOTFILES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include (send) files whose names begin with \".\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NODOTFILES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Don't send files whose names begin with \".\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/FOLLOWLINKS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Send files that are pointed to by symbolic links.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOFOLLOWLINKS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Skip over symbolic links (default).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIXOROSK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/IMAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Performs this transfer in image mode without affecting the global",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfer mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_LABELED
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LABELED",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Performs this transfer in labeled mode without affecting the global",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfer mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_LABELED */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/COMMAND",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sends the output from a command, rather than the contents of a file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The first \"filename\" on the SEND command line is interpreted as the name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of a command; the second (if any) is the as-name.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/FILENAMES:{CONVERTED,LITERAL}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Overrides the global SET FILE NAMES setting for this transfer only.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PATHNAMES:{OFF,ABSOLUTE,RELATIVE}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Overrides the global SET SEND PATHNAMES setting for this transfer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/FILTER:command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a command \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
(standard input/output filter) to pass the file through",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" before sending it.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/DELETE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Deletes the file (or each file in the group) after it has been sent",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" successfully (applies only to real files).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/QUIET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When sending in local mode, this suppresses the file-transfer display.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RECOVER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Used to recover from a previously interrupted transfer; SEND /RECOVER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is equivalent RESEND (use in binary mode only).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RECURSIVE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells C-Kermit to look not only in the given or current directory for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files that match the filespec, but also in all its subdirectories, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" all their subdirectories, etc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RENAME-TO:name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells C-Kermit to rename each source file that is sent successfully to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the given name (usually you should include \\v(filename) in the new name,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" which is replaced by the original filename.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/MOVE-TO:directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells C-Kermit to move each source file that is sent successfully to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the given directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/STARTING:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Starts sending the file from the given byte position.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SEND /STARTING:n filename is equivalent to PSEND filename n.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/SUBJECT:text",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the subject of an email message, to be used with /MAIL. If the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" text contains spaces, it must be enclosed in braces.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/MAIL:address",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sends the file as e-mail to the given address; use with /SUBJECT:.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PRINT:options",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sends the file to be printed, with optional options for the printer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_XYZ
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PROTOCOL:name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Uses the given protocol to send the file (Kermit, Zmodem, etc) for this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfer without changing global protocol.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_XYZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/AFTER:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files created after the given date-time are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified after the given date-time are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be sent. HELP DATE for info about date-time formats.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/BEFORE:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOT-AFTER:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or before the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOT-BEFORE:date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or after the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files modified at or after the given date-time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LARGER-THAN:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files longer than the given number of bytes are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/SMALLER-THAN:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that only those files smaller than the given number of bytes are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to be sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/EXCEPT:pattern",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that any files whose names match the pattern, which can be a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" regular filename, or may contain \"*\" and/or \"?\" metacharacters,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are not to be sent. To specify multiple patterns (up to 8), use outer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" braces around the group, and inner braces around each pattern:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /EXCEPT:{{pattern1}{pattern2}...}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TYPE:{ALL,TEXT,BINARY}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Send only files of the given type (see SET FILE SCAN).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LISTFILE:filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the name of a file that contains the list of names of files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that are to be sent. The filenames should be listed one name per line",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in this file (but a name can contain wildcards).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see HELP RECEIVE, HELP GET, HELP SERVER, HELP REMOTE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxrc[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: RECEIVE (or R) [ switches... ] [ as-name ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Wait for a file to arrive from the other Kermit, which must be given a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SEND command. If the optional as-name is given, the incoming file or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files are stored under that name, otherwise it will be stored under",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef CK_TMPDIR
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the name it arrives with.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the name it arrives with. If the filespec denotes a disk and/or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory, the incoming file or files will be stored there.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the name it arrives with. If the filespec denotes a directory, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" incoming file or files will be placed in that directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TMPDIR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Optional switches include:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/AS-NAME:text",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies \"text\" as the name to store the incoming file under.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" You can also specify the as-name as a filename on the command line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/BINARY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Skips text-mode conversions unless the incoming file arrives with binary",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" attribute",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/COMMAND",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Receives the file into the standard input of a command, rather than saving",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it on disk. The /AS-NAME or the \"filename\" on the RECEIVE command line",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is interpreted as the name of a command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/EXCEPT:pattern",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that any files whose names match the pattern, which can be a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" regular filename, or may contain \"*\" and/or \"?\" metacharacters,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are to be refused. To specify multiple patterns (up to 8), use outer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" braces around the group, and inner braces around each pattern:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /EXCEPT:{{pattern1}{pattern2}...}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/FILENAMES:{CONVERTED,LITERAL}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Overrides the global SET FILE NAMES setting for this transfer only.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/FILTER:command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Causes the incoming file to passed through the given command (standard",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" input/output filter) before being written to disk.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/IMAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Receives the file in image mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_LABELED
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LABELED",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies labeled transfer mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_LABELED */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/MOVE-TO:directory-name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that each file that arrives should be moved to the specified",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory after, and only if, it has been received successfully.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PATHNAMES:{OFF,ABSOLUTE,RELATIVE,AUTO}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Overrides the global SET RECEIVE PATHNAMES setting for this transfer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PIPES:{ON,OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Overrides the TRANSFER PIPES setting for this command only. ON allows",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" reception of files with names like \"!tar xf -\" to be automatically",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directed to a pipeline.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PROTOCOL:name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use the given protocol to receive the incoming file(s).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/QUIET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When sending in local mode, this suppresses the file-transfer display.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RECURSIVE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Equivalent to /PATHNAMES:RELATIVE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RENAME-TO:string",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that each file that arrives should be renamed as specified",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" after, and only if, it has been received successfully. The string should",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" normally contain variables like \\v(filename) or \\v(filenum).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TEXT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Forces text-mode conversions unless the incoming file has the binary",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" attribute",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TRANSPARENT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Inhibits character-set translation of incoming text files for the duration",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of the RECEIVE command without affecting subsequent commands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see HELP SEND, HELP GET, HELP SERVER, HELP REMOTE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NORESEND
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxrsen = "\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Syntax: RESEND filespec [name]\n\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Resend the file or files, whose previous transfer was interrupted.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Picks up from where previous transfer left off, IF the receiver was told\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
to SET FILE INCOMPLETE KEEP. Only works for binary-mode transfers.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Requires the other Kermit to have RESEND capability.";
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxrget = "\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Syntax: REGET filespec\n\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Ask a server to RESEND a file to C-Kermit.";
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxpsen = "\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Syntax: PSEND filespec position [name]\n\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Just like SEND, except sends the file starting at the given byte position.";
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NORESEND */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOMSEND
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxmse[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: MSEND [ switches... ] filespec [ filespec [ ... ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sends the files specified by the filespecs. One or more filespecs may be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" listed, separated by spaces. Any or all filespecs may contain wildcards",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and they may be in different directories. Alternative names cannot be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" given. Switches include /BINARY /DELETE /MAIL /PROTOCOL /QUIET /RECOVER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TEXT /TYPE; see HELP SEND for descriptions.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOMSEND */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxadd[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOMSEND
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ADD SEND-LIST filespec [ <mode> [ <as-name> ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Adds the specified file or files to the current SEND list. Use SHOW",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SEND-LIST and CLEAR SEND-LIST to display and clear the list; use SEND",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by itself to send the files from it.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOMSEND */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef PATTERNS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ADD BINARY-PATTERNS [ <pattern> [ <pattern> ... ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Adds the pattern(s), if any, to the SET FILE BINARY-PATTERNS list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ADD TEXT-PATTERNS [ <pattern> [ <pattern> ... ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Adds the pattern(s), if any, to the SET FILE TEXT-PATTERNS list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use SHOW PATTERNS to see the lists. See HELP SET FILE for further info.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* PATTERNS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxremv[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef PATTERNS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"REMOVE BINARY-PATTERNS [ <pattern> [ <pattern> ... ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Removes the pattern(s), if any, from the SET FILE BINARY-PATTERNS list",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"REMOVE TEXT-PATTERNS [ <pattern> [ <pattern> ... ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Removes the given patterns from the SET FILE TEXT-PATTERNS list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use SHOW PATTERNS to see the lists. See HELP SET FILE for further info.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* PATTERNS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSERVER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxser = "Syntax: SERVER\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Enter server mode on the current connection. All further commands\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
are taken in packet form from the other Kermit program. Use FINISH,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
BYE, or REMOTE EXIT to get C-Kermit out of server mode.";
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSERVER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmhset[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The SET command establishes communication, file, scripting, or other",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" parameters. The SHOW command can be used to display the values of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET parameters. Help is available for each individual parameter;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" type HELP SET ? to see what's available.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSETKEY
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmhskey[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET KEY k text",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Or: SET KEY CLEAR",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Configure the key whose \"scan code\" is k to send the given text when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" pressed during CONNECT mode. SET KEY CLEAR restores all the default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" key mappings. If there is no text, the default key binding is restored",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for the key k. SET KEY mappings take place before terminal character-set",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" translation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the key k.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The text may contain \"\\Kverbs\" to denote actions, to stand for DEC",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" keypad, function, or editing keys, etc. For a list of available keyboard",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" verbs, type SHOW KVERBS.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" To find out the scan code and mapping for a particular key, use the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SHOW KEY command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSETKEY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxychkt[] = { "Syntax: SET BLOCK-CHECK type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type of packet block check to be used for error detection, 1, 2, 3, or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" BLANK-FREE-2. Type 1 is standard, and catches most errors. Types 2 and 3",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specify more rigorous checking at the cost of higher overhead. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" BLANK-FREE-2 type is the same as Type 2, but is guaranteed to contain no",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" blanks.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxydeb[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET DEBUG { SESSION, ON, OFF, TIMESTAMP }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DEBUG ON",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DEBUG
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Opens a debug log file named debug.log in the current directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use LOG DEBUG if you want specify a different log file name or path.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (Has no effect in this version of Kermit.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DEBUG */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DEBUG OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Stops debug logging and session debugging.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DEBUG SESSION",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Displays control and 8-bit characters symbolically during CONNECT mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Equivalent to SET TERMINAL DEBUG ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (Has no effect in this version of Kermit.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DEBUG TIMESTAMP { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enables/Disables timestamps on debug log entries.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SPEED
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxyqctl[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET CONTROL-CHARACTER { PREFIXED, UNPREFIXED } { <code>..., ALL }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <code> is the numeric ASCII code for a control character 1-31,127-159,255."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The word \"ALL\" means all characters in this range.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PREFIXED <code> means the given control character must be converted to a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" printable character and prefixed, the default for all control characters.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UNPREFIXED <code> means you think it is safe to send the given control",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" character as-is, without a prefix. USE THIS OPTION AT YOUR OWN RISK!",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SHOW CONTROL to see current settings. SET CONTROL PREFIXED ALL is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" recommended for safety. You can include multiple <code> values in one",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command, separated by spaces.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SPEED */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NODIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxymodm[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET MODEM <parameter> <value> ...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Note: Many of the SET MODEM parameters are configured automatically when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"you SET MODEM TYPE, according to the modem's capabilities. SHOW MODEM to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"see them. Also see HELP DIAL and HELP SET DIAL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM TYPE <name>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit which kind of modem you have, so it can issue the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" appropriate modem-specific commands for configuration, dialing, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" hanging up. For a list of the modem types known to Kermit, type \"set",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" modem type ?\". The default modem type is GENERIC, which should work",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with any AT command-set modem that is configured for error correction,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" data compression, and hardware flow control. Use SET MODEM TYPE NONE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for direct serial, connections. Use SET MODEM TYPE USER-DEFINED to use",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a type of modem that is not built in to Kermit, and then use SET MODEM",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CAPABILITIES, SET MODEM, DIAL-COMMAND, and SET MODEM COMMAND to tell",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit how to configure and control it.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM CAPABILITIES <list>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use this command for changing Kermit's idea of your modem's capabilities,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for example, if your modem is supposed to have built-in error correction",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" but in fact does not. Also use this command to define the capabilities",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of a USER-DEFINED modem. Capabilities are:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AT AT-commands",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DC data-compression",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" EC error-correction",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HWFC hardware-flow",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ITU v25bis-commands",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SWFC software-flow",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KS kermit-spoof",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SB speed-buffering",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TB Telebit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM CARRIER-WATCH { AUTO, ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonym for SET CARRIER-WATCH (q.v.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMPRESSION { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enables/disables the modem's data compression feature, if any.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM DIAL-COMMAND <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The text replaces Kermit's built-in modem dialing command. It must",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" include '%s' (percent s) as a place-holder for the telephone numbers",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" given in your DIAL commands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM ERROR-CORRECTION { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enables/disables the modem's error-correction feature, if any.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM ESCAPE-CHARACTER number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Numeric ASCII value of modem's escape character, e.g. 43 for '+'.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For Hayes-compatible modems, Kermit uses three copies, e.g. \"+++\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM FLOW-CONTROL {AUTO, NONE, RTS/CTS, XON/XOFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects the type of local flow control to be used by the modem.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM HANGUP-METHOD { MODEM-COMMAND, RS232-SIGNAL, DTR }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" How hangup operations should be done. MODEM-COMMAND means try to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" escape back to the modem's command processor and give a modem-specific",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" hangup command. RS232-SIGNAL means turn off the DTR signal. DTR is a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" synonym for RS232-SIGNAL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM KERMIT-SPOOF {ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the selected modem type supports the Kermit protocol directly,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" use this command to turn its Kermit protocol function on or off.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM MAXIMUM-SPEED <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specify the maximum interface speed for the modem.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM NAME <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Descriptive name for a USER-DEFINED modem.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM SPEAKER {ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Turns the modem's speaker on or off during dialing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM SPEED-MATCHING {ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON means that C-Kermit changes its serial interface speed to agree with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the speed reported by the modem's CONNECT message, if any. OFF means",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit should not change its interface speed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM VOLUME {LOW, MEDIUM, HIGH}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects the desired modem speaker volume for when the speaker is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND commands are used to override built-in modem commands for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"each modem type, or to fill in commands for the USER-DEFINED modem type.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Omitting the optional [ text ] restores the built-in modem-specific command,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"if any:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND AUTOANSWER {ON, OFF} [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modem commands to turn autoanswer on and off.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND COMPRESSION {ON, OFF} [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modem commands to turn data compression on and off.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND ERROR-CORRECTION {ON, OFF} [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modem commands to turn error correction on and off.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND HANGUP [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Command that tells the modem to hang up the connection.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND IGNORE-DIALTONE [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Command that tells the modem not to wait for dialtone before dialing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND INIT-STRING [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The 'text' is a replacement for C-Kermit's built-in initialization command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for the modem.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND PREDIAL-INIT [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" A second INIT-STRING that is to be sent to the modem just prior to \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
dialing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND HARDWARE-FLOW [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modem command to enable hardware flow control (RTS/CTS) in the modem.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND SOFTWARE-FLOW [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modem command to enable local software flow control (Xon/Xoff) in modem.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND SPEAKER { ON, OFF } [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modem command to turn the modem's speaker on or off.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND NO-FLOW-CONTROL [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modem command to disable local flow control in the modem.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND PULSE [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modem command to select pulse dialing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND TONE [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modem command to select tone dialing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MODEM COMMAND VOLUME { LOW, MEDIUM, HIGH } [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modem command to set the modem's speaker volume.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxydial[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The SET DIAL command establishes or changes all parameters related to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"dialing the telephone. Also see HELP DIAL and HELP SET MODEM. Use SHOW",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"DIAL to display all of the SET DIAL values.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL COUNTRY-CODE <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit the telephonic country-code of the country you are dialing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from, so it can tell whether a portable-format phone number from your",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" dialing directory will result in a national or an international call.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Examples: 1 for USA, Canada, Puerto Rico, etc; 7 for Russia, 39 for Italy,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 351 for Portugal, 47 for Norway, 44 for the UK, 972 for Israel, 81 for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Japan, ...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If you have not already set your DIAL INTL-PREFIX and LD-PREFIX, then this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command sets default values for them: 011 and 1, respectively, for country",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" code 1; 00 and 0, respectively, for all other country codes. If these are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" not your true international and long-distance dialing prefixes, then you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" should follow this command by DIAL INTL-PREFIX and LD-PREFIX to let Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" know what they really are.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL AREA-CODE [ <number> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit the area or city code that you are dialing from, so it can",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" tell whether a portable-format phone number from the dialing directory is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" local or long distance. Be careful not to include your long-distance",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" dialing prefix as part of your area code; for example, the area code for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" central London is 171, not 0171.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL CONFIRMATION {ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit does various transformations on a telephone number retrieved from",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the dialing directory prior to dialing (use LOOKUP <name> to see them).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" In case the result might be wrong, you can use SET DIAL CONFIRM ON to have",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit ask you if it is OK to dial the number, and if not, to let you type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in a replacement.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL CONNECT { AUTO, ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to CONNECT (enter terminal mode) automatically after successfully",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" dialing. ON means to do this; OFF means not to. AUTO (the default) means",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" do it if the DIAL command was given interactively, but don't do it if the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DIAL command was issued from a macro or command file. If you specify ON",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or AUTO, you may follow this by one of the keywords VERBOSE or QUIET, to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" indicate whether the verbose 4-line 'Connecting...' message is to be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" displayed if DIAL succeeds and Kermit goes into CONNECT mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL CONVERT-DIRECTORY {ASK, ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The format of Kermit's dialing directory changed in version 5A(192). This",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command tells Kermit what to do when it encounters an old-style directory:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASK you whether to convert it, or convert it automatically (ON), or leave",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it alone (OFF). Old-style directories can still be used without",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" conversion, but the parity and speed fields are ignored.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL DIRECTORY [ filename [ filename [ filename [ ... ] ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The name(s) of your dialing directory file(s). If you do not supply any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" filenames, the dialing directory feature is disabled and all numbers are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" dialed literally as given in the DIAL command. If you supply more than",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" one directory, all of them are searched.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL SORT {ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When multiple entries are obtained from your dialing directory, they are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" sorted in \"cheapest-first\" order. If this does not produce the desired",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" effect, SET DIAL SORT OFF to disable sorting, and the numbers will be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" dialed in the order in which they were found.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL DISPLAY {ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to display dialing progress on the screen; default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL HANGUP {ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to hang up the phone prior to dialing; default is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL IGNORE-DIALTONE {ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to ignore dialtone when dialing; default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL MACRO [ name ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specify the name of a macro to execute on every phone number dialed, just",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" prior to dialing it, in order to perform any last-minute alterations.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL METHOD {AUTO, DEFAULT, TONE, PULSE}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to use the modem's DEFAULT dialing method, or to force TONE or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PULSE dialing. AUTO (the default) means to choose tone or pulse dialing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" based on the country code. (Also see SET DIAL TONE-COUNTRIES and SET DIAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PULSE-COUNTRIES.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL PACING number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" How many milliseconds to pause between sending each character to the modem",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" dialer. The default is -1, meaning to use the number from the built-in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" modem database.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL PULSE-COUNTRIES [ cc [ cc [ ... ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets the list of countries in which pulse dialing is required. Each cc",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is a country code.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL TEST { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OFF for normal dialing. Set to ON to test dialing procedures without",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" actually dialing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL TONE-COUNTRIES [ cc [ cc [ ... ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets the list of countries in which tone dialing is available. Each cc",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is a country code.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL TIMEOUT number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" How many seconds to wait for a dialed call to complete. Use this command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to override the DIAL command's automatic timeout calculation. A value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of 0 turns off this feature and returns to Kermit's automatic dial",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" timeout calculation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL RESTRICT { INTERNATIONAL, LOCAL, LONG-DISTANCE, NONE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Prevents placing calls of the type indicated, or greater. For example",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET DIAL RESTRICT LONG prevents placing of long-distance and international",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" calls. If this command is not given, there are no restrictions. Useful",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when dialing a list of numbers fetched from a dialing directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL RETRIES <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" How many times to redial each number if the dialing result is busy or no",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" no answer, until the call is succesfully answered. The default is 0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" because automatic redialing is illegal in some countries.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL INTERVAL <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" How many seconds to pause between automatic redial attempts; default 10.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The following commands apply to all phone numbers, whether given literally",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"or found in the dialing directory:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL PREFIX [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Establish a prefix to be applied to all phone numbers that are dialed,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for example to disable call waiting.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL SUFFIX [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Establish a suffix to be added after all phone numbers that are dialed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The following commands apply only to portable-format numbers obtained from",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the dialing directory; i.e. numbers that start with a \"+\" sign and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"country code, followed by area code in parentheses, followed by the phone",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"number.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL LC-AREA-CODES [ <list> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Species a list of area codes to which dialing is local, i.e. does not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" require the LD-PREFIX. Up to 32 area codes may be listed, separated by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" spaces. Any area codes in this list will be included in the final dial",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" string so do not include your own area code if it should not be dialed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL LC-PREFIX [ <text> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a prefix to be applied to local calls made from portable dialing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory entries. Normally no prefix is used for local calls.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL LC-SUFFIX [ <text> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a suffix to be applied to local calls made from portable dialing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory entries. Normally no suffix is used for local calls.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL LD-PREFIX [ <text> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Your long-distance dialing prefix, to be used with portable dialing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory entries that result in long-distance calls.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL LD-SUFFIX [ <text> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Long-distance dialing suffix, if any, to be used with portable dialing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory entries that result in long-distance calls. This would normally",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be used for appending a calling-card number to the phone number.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL FORCE-LONG-DISTANCE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to force long-distance dialing for calls that normally would be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" local. For use (e.g.) in France.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL TOLL-FREE-AREA-CODE [ <number> [ <number> [ ... ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit the toll-free area code(s) in your country.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL TOLL-FREE-PREFIX [ <text> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" You toll-free dialing prefix, in case it is different from your long-",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" distance dialing prefix.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL INTL-PREFIX <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Your international dialing prefix, to be used with portable dialing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory entries that result in international calls.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL INTL-SUFFIX <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" International dialing suffix, if any, to be used with portable dialing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory entries that result in international calls.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL PBX-OUTSIDE-PREFIX <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use this to tell Kermit how to get an outside line when dialing from a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Private Branch Exchange (PBX).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL PBX-EXCHANGE <text> [ <text> [ ... ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If PBX-OUTSIDE-PREFIX is set, then you can use this command to tell Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the leading digits of one or more local phone numbers that identify it as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" being on your PBX, so it can make an internal call by deleting those digits"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from the phone number.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET DIAL PBX-INTERNAL-PREFIX <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If PBX-EXCHANGE is set, and Kermit determines from it that a call is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" internal, then this prefix, if any, is added to the number prior to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
dialing. Use this if internal calls from your PBX require a special prefix.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NODIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxyflo[] = { "Syntax: SET FLOW [ switch ] value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects the type of flow control to use during file transfer, terminal",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" connection, and script execution.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects the type of flow control to use during file transfer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Switches let you associate a particular kind of flow control with each",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" kind of connection: /REMOTE, /MODEM, /DIRECT-SERIAL, /TCPIP, etc; type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"set flow ?\" for a list of available switches. Then whenever you make",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a connection, the associated flow-control is chosen automatically.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The flow-control values are NONE, KEEP, XON/XOFF, and possibly RTS/CTS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and some others; again, type \"set flow ?\" for a list. KEEP tells Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" not to try to change the current flow-control method for the connection.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If you omit the switch and simply supply a value, this value becomes the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current flow control type, overriding any default value that might have",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" been chosen in your most recent SET LINE, SET PORT, or SET HOST, or other",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" connection-establishment command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type SHOW FLOW-CONTROL to see the current defaults for each connection type"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" as well as the current connection type and flow-control setting. SHOW",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" COMMUNICATIONS also shows the current flow-control setting.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxyf[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET FILE parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Sets file-related parameters. Use SHOW FILE to view them. Also see SET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"(and SHOW) TRANSFER and PROTOCOL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE TYPE { TEXT, BINARY, IMAGE, LABELED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef STRATUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE TYPE { TEXT, BINARY, LABELED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef MAC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE TYPE { TEXT, BINARY, MACBINARY }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE TYPE { TEXT, BINARY }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* STRATUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* MAC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" How file contents are to be treated during file transfer in the absence",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of any other indication. TYPE can be TEXT for conversion of record format",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and character set, which is usually needed when transferring text files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" between unlike platforms (such as UNIX and Windows), or BINARY for no",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" conversion if TRANSFER MODE is MANUAL, which is not the default. Use",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" BINARY with TRANSFER MODE MANUAL for executable programs or binary data or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" whenever you wish to duplicate the original contents of the file, byte for"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" byte. In most modern Kermit programs, the file sender informs the receiver"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of the file type automatically. However, when sending files from C-Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to an ancient or non-Columbia Kermit implementation, you might need to set",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the corresponding file type at the receiver as well.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE TYPE settings of TEXT and BINARY have no effect when sending files,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" since VMS C-Kermit determines each file's type automatically from its",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" record format: binary for fixed, text for others. For incoming files,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" these settings are effective only in the absence of a file-type indication",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from the sender.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" You may include an optional record-format after the word BINARY. This may",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be FIXED (the default) or UNDEFINED. UNDEFINED is used when you need to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" receive binary files in binary mode and have them stored with UNDEFINED",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" record format, which is required by certain VMS applications.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Two additional VMS file types are also supported: IMAGE and LABELED.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IMAGE means raw block i/o, no interference from RMS, applies to file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transmission only, and overrides the normal automatica file type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" determination. LABELED means to send or interpret RMS attributes",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with the file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When TRANSFER MODE is AUTOMATIC (as it is by default), various automatic",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" methods (depending on the platform) are used to determine whether a file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is transferred in text or binary mode; these methods (which might include",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" content scan (see SET FILE SCAN below), filename pattern matching (SET FILE"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PATTERNS), client/server \"kindred-spirit\" recognition, or source file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" record format) supersede the FILE TYPE setting but can, themselves, be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" superseded by including a /BINARY or /TEXT switch in the SEND, GET, or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" RECEIVE command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When TRANSFER MODE is MANUAL, the automatic methods are skipped for sending"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files; the FILE TYPE setting is used instead, which can be superseded on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a per-command basis with a /TEXT or /BINARY switch.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE BYTESIZE { 7, 8 }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Normally 8. If 7, Kermit truncates the 8th bit of all file bytes.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE CHARACTER-SET name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells the encoding of the local file, ASCII by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The names ITALIAN, PORTUGUESE, NORWEGIAN, etc, refer to 7-bit ISO-646",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" national character sets. LATIN1 is the 8-bit ISO 8859-1 Latin Alphabet 1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for Western European languages.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NEXT is the 8-bit character set of the NeXT workstation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The CPnnn sets are for PCs. MACINTOSH-LATIN is for the Macintosh.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLATIN2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LATIN2 is ISO 8859-2 for Eastern European languages that are written with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Roman letters. Mazovia is a PC code page used in Poland.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLATIN2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CYRILLIC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KOI-CYRILLIC, CYRILLIC-ISO, and CP866 are 8-bit Cyrillic character sets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SHORT-KOI is a 7-bit ASCII coding for Cyrillic. BULGARIA-PC is a PC code",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" page used in Bulgaria",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CYRILLIC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef HEBREW
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HEBREW-ISO is ISO 8859-8 Latin/Hebrew. CP862 is the Hebrew PC code page.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HEBREW-7 is like ASCII with the lowercase letters replaced by Hebrew.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* HEBREW */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef GREEK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" GREEK-ISO is ISO 8859-7 Latin/Greek. CP869 is the Greek PC code page.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ELOT-927 is like ASCII with the lowercase letters replaced by Greek.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* GREEK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KANJI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" JAPANESE-EUC, JIS7-KANJI, DEC-KANJI, and SHIFT-JIS-KANJI are Japanese",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kanji character sets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KANJI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNICODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UCS-2 is the 2-byte form of the Universal Character Set.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UTF-8 is the serialized form of the Universal Character Set.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNICODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type SET FILE CHAR ? for a complete list of file character sets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE DEFAULT 7BIT-CHARACTER-SET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When automatically switching among different kinds of files while sending",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" this tells the character set to be used for 7-bit text files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE DEFAULT 8BIT-CHARACTER-SET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This tells the character set to be used for 8-bit text files when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" switching automatically among different kinds of files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE COLLISION option",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells what to do when a file arrives that has the same name as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" an existing file. The options are:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" BACKUP (default) - Rename the old file to a new, unique name and store",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the incoming file under the name it was sent with.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OVERWRITE - Overwrite (replace) the existing file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" APPEND - Append the incoming file to the end of the existing file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DISCARD - Refuse and/or discard the incoming file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" RENAME - Give the incoming file a unique name.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UPDATE - Accept the incoming file only if newer than the existing file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE DESTINATION { DISK, PRINTER, SCREEN, NOWHERE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DISK (default): Store incoming files on disk.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PRINTER: Send incoming files to SET PRINTER device.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SCREEN: Display incoming files on screen (local mode only).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NOWHERE: Do not put incoming files anywhere (use for calibration).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE DISPLAY option",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects the format of the file transfer display for local-mode file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfer. The choices are:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" BRIEF A line per file, showing size, mode, status, and throughput.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SERIAL One dot is printed for every K bytes transferred.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CRT Numbers are continuously updated on a single screen line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This format can be used on any video display terminal.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_CURSES
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FULLSCREEN A fully formatted 24x80 screen showing lots of information.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This requires a terminal or terminal emulator.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_CURSES */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NONE No file transfer display at all.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE DOWNLOAD-DIRECTORY [ <directory-name> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The directory into which all received files should be placed. By default,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" received files go into your current directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_CTRLZ
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE EOF { CTRL-Z, LENGTH }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" End-Of-File detection method, normally LENGTH. Applies only to text-mode",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfers. When set to CTRL-Z, this makes the file sender treat the first",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Ctrl-Z in the input file as the end of file (EOF), and it makes the file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" receiver tack a Ctrl-Z onto the end of the output file if it does not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" already end with Ctrl-Z.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_CTRLZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE END-OF-LINE { CR, CRLF, LF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use this command to specify nonstandard line terminators for text files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE INCOMPLETE { AUTO, KEEP, DISCARD }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" What to do with an incompletely received file: KEEP, DISCARD, or AUTO.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTO (the default) means DISCARD if transfer is in text mode, KEEP if it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is in binary mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE LABEL { ACL, BACKUP-DATE, NAME, OWNER, PATH } { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells which items to include (ON) or exclude (OFF) in labeled file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfers",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE LABEL { ARCHIVE, READ-ONLY, HIDDEN, SYSTEM, EXTENDED } { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells which items to include (ON) or exclude (OFF) in labeled file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfers.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DYNAMIC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE LISTSIZE number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Changes the size of the internal wildcard expansion list. Use SHOW FILE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to see the current size. Use this command to increase the size if you get",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a \"?Too many files\" error. Also see SET FILE STRINGSPACE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DYNAMIC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE NAMES { CONVERTED, LITERAL }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" File names are normally CONVERTED to \"common form\" during transmission",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (e.g. lowercase to uppercase, extra periods changed to underscore, etc).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LITERAL means use filenames literally (useful between like systems). Also",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" see SET SEND PATHNAMES and SET RECEIVE PATHNAMES.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE OUTPUT { { BUFFERED, UNBUFFERED } [ size ], BLOCKING, NONBLOCKING }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lets you control the disk output buffer for incoming files. Buffered",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" blocking writes are normal. Nonblocking writes might be faster on some",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" systems but might also be risky, depending on the underlying file service.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Unbuffered writes might be useful in critical applications to ensure that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" cached disk writes are not lost in a crash, but will probably also be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" slower. The optional size parameter after BUFFERED or UNBUFFERED lets you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" change the disk output buffer size; this might make a difference in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" performance.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef PATTERNS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE PATTERNS { ON, OFF, AUTO }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON means to use filename pattern lists to determine whether to send a file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in text or binary mode. OFF means to send all files in the prevailing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" mode. AUTO (the default) is like ON if the other Kermit accepts Attribute",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" packets and like OFF otherwise. FILE PATTERNS are used only if FILE SCAN",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is OFF (see SET FILE SCAN).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE BINARY-PATTERNS [ <pattern> [ <pattern> ... ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Zero or more filename patterns which, if matched, cause a file to be sent",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in binary mode when FILE PATTERNS are ON. HELP WILDCARDS for a description"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of pattern syntax. SHOW PATTERNS to see the current file pattern lists.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE TEXT-PATTERNS [ <pattern> [ <pattern> ... ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Zero or more filename patterns which, if matched, cause a file to be sent",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in text mode when FILE PATTERNS is ON; if a file does not match a text or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" binary pattern, the prevailing SET FILE TYPE is used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* PATTERNS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE RECORD-LENGTH number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets the record length for received files of type BINARY. Use this to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" receive VMS BACKUP savesets or other fixed-format files that do not use",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the default record length of 512.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE SCAN { ON [ size ], OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If TRANSFER MODE is AUTOMATIC and FILE SCAN is ON (as it is by default)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit peeks at the file's contents to see if it's text or binary. Use",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET FILE SCAN OFF to disable file peeking, while still keeping TRANSFER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" MODE automatic to allow name patterns and other methods. The optional",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" size is the number of file bytes to scan, 49152 by default. -1 means to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" scan the whole file. Also see SET FILE PATTERNS.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DYNAMIC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE STRINGSPACE number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Changes the size (in bytes) of the internal buffer that holds lists of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" filenames such as wildcard expansion lists. Use SHOW FILE to see the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current size. Use this command to increase the size if you get a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"?String space exhausted\" error. Also see SET FILE LISTSIZE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DYNAMIC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNICODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE UCS BOM { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to write a Byte Order Mark when creating a UCS-2 file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE UCS BYTE-ORDER { BIG-ENDIAN, LITTLE-ENDIAN }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Byte order to use when creating UCS-2 files, and to use when reading UCS-2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files that do not start with a Byte Order Mark.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNICODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET FILE WARNING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET FILE WARNING is superseded by the newer command, SET FILE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" COLLISION. SET FILE WARNING ON is equivalent to SET FILE COLLISION RENAME",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and SET FILE WARNING OFF is equivalent to SET FILE COLLISION OVERWRITE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxyhsh[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET HANDSHAKE { NONE, XON, LF, BELL, ESC, CODE number }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Character to use for half duplex line turnaround handshake during file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfer. C-Kermit waits for this character from the other computer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" before sending its next packet. Default is NONE; you can give one of the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" other names like BELL or ESC, or use SET HANDSHAKE CODE to specify the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" numeric code value of the handshake character. Type SET HANDSH ? for a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" complete list of possibilities.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSERVER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hsetsrv[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SERVER CD-MESSAGE {ON,OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether the server, after successfully executing a REMOTE CD",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command, should send the contents of the new directory's READ.ME",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (or similar) file to your screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SERVER CD-MESSAGE FILE name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells the name of the file to be displayed as a CD-MESSAGE, such as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" READ.ME (SHOW SERVER tells the current CD-MESSAGE FILE name).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" To specify more than one filename to look for, use {{name1}{name2}..}.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonym: SET CD MESSAGE FILE <list>.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SERVER DISPLAY {ON,OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether local-mode C-Kermit during server operation should put a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" file transfer display on the screen. Default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SERVER GET-PATH [ directory [ directory [ ... ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells the C-Kermit server where to look for files whose names it receives",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from client GET commands when the names are not fully specified pathnames.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is no GET-PATH, so C-Kermit looks only in its current directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SERVER IDLE-TIMEOUT seconds",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Idle time limit while in server mode, 0 for no limit.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NOTE: SERVER IDLE-TIMEOUT and SERVER TIMEOUT are mutually exclusive.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SERVER KEEPALIVE {ON,OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether C-Kermit should send \"keepalive\" packets while executing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" REMOTE HOST commands, which is useful in case the command takes a long",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" time to produce any output and therefore might cause the operation to time",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" out. ON by default; turn it OFF if it causes trouble with the client or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" slows down the server too much.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SERVER LOGIN [ username [ password [ account ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets up a username and optional password which must be supplied before",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the server will respond to any commands other than REMOTE LOGIN. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" account is ignored. If you enter SET SERVER LOGIN by itself, then login",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is no longer required. Only one SET SERVER LOGIN command can be in effect",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" at a time; C-Kermit does not support multiple user/password pairs.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SERVER TIMEOUT n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Server command wait timeout interval, how often the C-Kermit server issues",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a NAK while waiting for a command packet. Specify 0 for no NAKs at all.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is 0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSERVER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmhrmt[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The REMOTE command sends file management instructions or other commands",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"to a Kermit or FTP server. If you have a single connection, the command is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"directed to the server you are connected to; if you have multiple connections"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the command is directed according to your GET-PUT-REMOTE setting.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The REMOTE command sends file management instructions or other commands",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"to a Kermit server. There should already be a Kermit running in server",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"mode on the other end of the connection.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Type REMOTE ? to see a list of available remote commands. Type HELP REMOTE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"xxx to get further information about a particular remote command xxx.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"All REMOTE commands except LOGIN and LOGOUT have R-command shortcuts;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"for example, RDIR for REMOTE DIR, RCD for REMOTE CD, etc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef LOCUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see: HELP SET LOCUS, HELP FTP, HELP SET GET-PUT-REMOTE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see: HELP FTP, HELP SET GET-PUT-REMOTE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* LOCUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef LOCUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see: HELP SET LOCUS.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* LOCUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *ifhlp[] = { "Syntax: IF [NOT] condition commandlist",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If the condition is (is not) true, do the commandlist. The commandlist",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"can be a single command, or a list of commands separated by commas and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"enclosed in braces. The condition can be a single condition or a group of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"conditions separated by AND (&&) or OR (||) and enclosed in parentheses.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If parentheses are used they must be surrounded by spaces. Examples:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF EXIST oofa.txt <command>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF ( EXIST oofa.txt || = \\v(nday) 3 ) <command>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF ( EXIST oofa.txt || = \\v(nday) 3 ) { <command>, <command>, ... }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The conditions are:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SUCCESS - The previous command succeeded",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OK - Synonym for SUCCESS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FAILURE - The previous command failed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ERROR - Synonym for FAILURE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FLAG - Succeeds if SET FLAG ON, fails if SET FLAG OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" BACKGROUND - C-Kermit is running in the background",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_IFRO
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FOREGROUND - C-Kermit is running in the foreground",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" REMOTE-ONLY - C-Kermit was started with the -R command-line option",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FOREGROUND - C-Kermit is running in the foreground",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_IFRO */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KERBANG - A Kerbang script is running",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ALARM - SET ALARM time has passed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASKTIMEOUT - The most recent ASK, ASKQ, GETC, or GETOK timed out",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" EMULATION - Succeeds if executed while in CONNECT mode",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TAPI - Current connection is via a Microsoft TAPI device",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" MS-KERMIT - Program is MS-DOS Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C-KERMIT - Program is C-Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" K-95 - Program is Kermit 95",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" GUI - Program runs in a GUI window",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AVAILABLE CRYPTO - Encryption is available",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AVAILABLE KERBEROS4 - Kerberos 4 authentication is available",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AVAILABLE KERBEROS5 - Kerberos 5 authentication is available",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AVAILABLE NTLM - NTLM authentication is available",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AVAILABLE SRP - SRP authentication is available",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AVAILABLE SSL - SSL/TLS authentication is available",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" MATCH string pattern - Succeeds if string matches pattern",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKFLOAT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FLOAT number - Succeeds if floating-point number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKFLOAT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" COMMAND word - Succeeds if word is built-in command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEFINED variablename or macroname - The named variable or macro is defined",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DECLARED arrayname - The named array is declared",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NUMERIC variable or constant - The variable or constant is numeric",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" EXIST filename - The named file exists",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ABSOLUTE filename - The filename is absolute, not relative",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TMPDIR
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DIRECTORY string - The string is the name of a directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TMPDIR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LINK string - The string is a symbolic link",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" READABLE filename - Succeeds if the file is readable",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" WRITEABLE filename - Succeeds if the file is writeable",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ZFCDAT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NEWER file1 file2 - The 1st file is newer than the 2nd one",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ZFCDAT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OPEN { READ-FILE,SESSION-LOG,...} - The given file or log is open",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OPEN CONNECTION - A connection is open",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KBHIT - A key has been pressed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" VERSION - equivalent to \"if >= \\v(version) ...\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" COUNT - subtract one from COUNT, execute the command if the result is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" greater than zero (see SET COUNT)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" EQUAL s1 s2 - s1 and s2 (character strings or variables) are equal",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LLT s1 s2 - s1 is lexically (alphabetically) less than s2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LGT s1 s1 - s1 is lexically (alphabetically) greater than s2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" = n1 n2 - n1 and n2 (numbers or variables containing numbers) are equal",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" < n1 n2 - n1 is arithmetically less than n2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <= n1 n2 - n1 is arithmetically less than or equal to n2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" > n1 n2 - n1 is arithmetically greater than n2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" >= n1 n2 - n1 is arithmetically greater than or equal to n2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (number by itself) - fails if the number is 0, succeeds otherwise",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TRUE - always succeeds",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FALSE - always fails",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The IF command may be followed on the next line by an ELSE command. Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF < \\%x 10 ECHO It's less",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ELSE echo It's not less",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"It can also include an ELSE part on the same line if braces are used:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF < \\%x 10 { ECHO It's less } ELSE { ECHO It's not less }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see HELP WILDCARD (for IF MATCH pattern syntax).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxeval[] = { "Syntax: EVALUATE variable expression",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Evaluates the expression and assigns its value to the given variable.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The expression can contain numbers and/or numeric-valued variables or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" functions, combined with mathematical operators and parentheses in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" traditional notation. Operators include +-/*(), etc. Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" EVALUATE \\%n (1+1) * (\\%a / 3).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NOTE: Prior to C-Kermit 7.0, the syntax was \"EVALUATE expression\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (no variable), and the result was printed. Use SET EVAL { OLD, NEW }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to choose the old or new behavior, which is NEW by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Alse see: HELP FUNCTION EVAL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxexit[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: EXIT (or QUIT) [ number [ text ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Exits from the Kermit program, closing all open files and devices.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If a number is given it becomes Kermit's exit status code. If text is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" included, it is printed. Also see SET EXIT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *ifxhlp[] = { "\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Syntax: XIF condition { commandlist } [ ELSE { commandlist } ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Obsolete. Same as IF (see HELP IF).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *forhlp[] = { "\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Syntax: FOR variablename initial-value final-value increment { commandlist }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FOR loop. Execute the comma-separated commands in the commandlist the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" number of times given by the initial value, final value and increment.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Example: FOR \\%i 10 1 -1 { pause 1, echo \\%i }", "" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *whihlp[] = { "\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Syntax: WHILE condition { commandlist }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" WHILE loop. Execute the comma-separated commands in the bracketed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" commandlist while the condition is true. Conditions are the same as for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF commands.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *swihlp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SWITCH <variable> { case-list }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects from a group of commands based on the value of a variable.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The case-list is a series of lines like these:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" :x, command, command, ..., break",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" where \"x\" is a possible value for the variable. At the end of the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" case-list, you can put a \"default\" label to catch when the variable does",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" not match any of the labels:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" :default, command, command, ...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The case label \"x\" can be a character, a string, a variable, a function",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"invocation, a pattern, or any combination of these. See HELP WILDCARDS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"for information about patterns.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *openhlp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: OPEN mode filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For use with READ and WRITE commands. Open the local file in the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specified mode: READ, WRITE, or APPEND. !READ and !WRITE mean to read",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from or write to a system command rather than a file. Examples:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OPEN READ oofa.txt",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OPEN !READ sort foo.bar",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxask[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: ASK [ switches ] variablename [ prompt ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Example: ASK \\%n { What is your name\\? }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Issues the prompt and defines the variable to be whatever is typed in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" response, up to the terminating carriage return. Use braces to preserve",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" leading and/or trailing spaces in the prompt.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: ASKQ [ switches ] variablename [ prompt ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Example: ASKQ \\%p { Password:}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Like ASK except the response does not echo on the screen or, if specified",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it echoes as asterisks or other specified character.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /DEFAULT:text",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Text to supply if the user enters a blank response or the /TIMEOUT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" limit expired with no response.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ECHO:char",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (ASKQ only) Character to be echoed each time the user presses a key",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" corresponding to a printable character. This lets users see what they are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" doing when they are typing (e.g.) passwords, and makes editing easier.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /POPUP",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The prompt and response dialog takes place in a text-mode popup.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" K95 only; in C-Kermit this switch is ignored.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /GUI",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The prompt and response dialog takes place in a GUI popup.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" K95 GUI version only; in C-Kermit and the K95 console version,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" this switch is ignored.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TIMEOUT:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the response is not entered within the given number of seconds, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command fails. This is equivalent to setting ASK-TIMER to a positive",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" number, except it applies only to this command. Also see SET ASK-TIMER.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NOTE: If a /DEFAULT: value was also given, it is supplied automatically",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" upon timeout and the command does NOT fail.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /QUIET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Suppresses \"?Timed out\" message when /TIMEOUT is given and user doesn't",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" respond within the time limit.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxgetc[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: GETC variablename [ prompt ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Example: GETC \\%c { Type any character to continue...}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Issues the prompt and sets the variable to the first character you type.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use braces to preserve leading and/or trailing spaces in the prompt.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see SET ASK-TIMER.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxytimer[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET ASK-TIMER number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For use with ASK, ASKQ, GETOK, and GETC. If ASK-TIMER is set to a number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" greater than 0, these commands will time out after the given number of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" seconds with no response. This command is \"sticky\", so to revert to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
untimed ASKs after a timed one, use SET ASK-TIMER 0. Also see IF ASKTIMEOUT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxdot[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: .<variable-name> <assignment-operator> <value>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Assigns the value to the variable in the manner indicated by the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" assignment operator:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" = Copies without evaluation (like DEFINE).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" := Copies with evaluation (like ASSIGN).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ::= Copies with arithmetic evaluation (like EVALUATE).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxdef[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: DEFINE name [ definition ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Defines a macro or variable. Its value is the definition, taken",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" literally. No expansion or evaluation of the definition is done. Thus",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" if the definition includes any variable or function references, their",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" names are included, rather than their values (compare with ASSIGN). If",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the definition is omitted, then the named variable or macro is undefined.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"A typical macro definition looks like this:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEFINE name command, command, command, ...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"for example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEFINE vax set parity even, set duplex full, set flow xon/xoff",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"which defines a Kermit command macro called 'vax'. The definition is a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"comma-separated list of Kermit commands. Use the DO command to execute",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the macro, or just type its name, followed optionally by arguments.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The definition of a variable can be anything at all, for example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEFINE \\%a Monday",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEFINE \\%b 3",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"These variables can be used almost anywhere, for example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ECHO Today is \\%a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET BLOCK-CHECK \\%b",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxass[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: ASSIGN variablename string.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Example: ASSIGN \\%a My name is \\%b.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Assigns the current value of the string to the variable (or macro).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The definition string is fully evaluated before it is assigned, so that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the values of any variables that are contained are used, rather than their",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" names. Compare with DEFINE. To illustrate the difference, try this:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEFINE \\%a hello",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEFINE \\%x \\%a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASSIGN \\%y \\%a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEFINE \\%a goodbye",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ECHO \\%x \\%y",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This prints 'goodbye hello'.", "" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxdec[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: DECREMENT variablename [ number ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Decrement (subtract one from) the value of a variable if the current value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is numeric. If the number argument is given, subtract that number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" instead.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Examples: DECR \\%a, DECR \\%a 7, DECR \\%a \\%n", "" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxinc[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: INCREMENT variablename [ number ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Increment (add one to) the value of a variable if the current value is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" numeric. If the number argument is given, add that number instead.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Examples: INCR \\%a, INCR \\%a 7, INCR \\%a \\%n", "" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ANYX25
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef IBMX25
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxpad[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: PAD command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"X.25 PAD commands:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PAD CLEAR - Clear the virtual call",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PAD STATUS - Return the status of virtual call",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PAD RESET - Send a reset packet",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PAD INTERRUPT - Send an interrupt packet",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* IBMX25 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyx25[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET X.25 option { ON [ data ], OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"X.25 call options:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CLOSED-USER-GROUP { ON index, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enable or disable closed user group call, where index is the group",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" index, 0 to 99.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" REVERSE-CHARGE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tell whether you want to reverse the charges for the call.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CALL-USER-DATA { ON string, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specify call user-data for the X.25 call.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ANYX25 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyprtr[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef PRINTSWI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET PRINTER [ switches ] [ name ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the printer to be used for transparent-print, autoprint, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" screen-dump material during terminal emulation, as well as for the PRINT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command, plus various options governing print behavior.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Switches for specifying the printer by type:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NONE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include this switch to specify that all printer actions should simply be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" skipped. Use this, for example, if you have no printer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/DOS-DEVICE[:name]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include this to declare a DOS printer and to specify its name, such as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PRN, LPT1, etc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/WINDOWS-QUEUE[:[queue-name]]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include this to declare a Windows printer and specify its queue name.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type question mark (?) after the colon (:) to see a list of known queue",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" names. If the colon is absent, the switch indicates the currently",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" selected printer is a Windows Print Queue. If the colon is provided",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and the name is absent, the Windows Print Queue chosen as the Default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Printer is selected.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/FILE[:name]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that all printer material is to be appended to the named file,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" rather than being sent to a printer. If the file does not exist, it is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" created the first time any material is to be printed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PIPE[:name]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that all printer material is to be sent as standard input to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the program or command whose name is given. Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PRINTER /PIPE:{textps > lpt1}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If you give a printer name without specifying any of these switches, then it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"is assumed to be a DOS printer device or filename unless the name given",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"(after removing enclosing braces, if any) starts with \"|\", \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
in which case it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"is a pipe. Examples:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PRINTER LPT1 <-- DOS device",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PRINTER {| textps > lpt1} <-- Pipe",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The next group of switches tells whether the printer is one-way or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"bidirectional (two-way):",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/OUTPUT-ONLY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include this to declare the printer capable only of receiving material to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be printed, but not sending anything back. This is the normal kind of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" printer, Kermit's default kind, and the opposite of /BIDIRECTIONAL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/BIDIRECTIONAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include this to declare the printer bidirectional. This is the opposite ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of /OUTPUT-ONLY. You can also use this option with serial printers, even",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" if they aren't bidirectional, in case you need to specify speed, flow",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" control, or parity.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The next group applies only to bidirectional and/or serial printers:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/FLOW-CONTROL:{NONE,XON/XOFF,RTS/CTS,KEEP}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Flow control to use with a serial bidirectional printer, default KEEP;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" i.e. use whatever the Windows driver for the port normally uses.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" i.e. use whatever the OS/2 driver for the port normally uses.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/PARITY:{NONE,EVEN,ODD,SPACE,MARK}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Parity to use with a serial printer, default NONE; i.e. use 8 data bits",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and no parity. If you omit the colon and the keyword, NONE is selected.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/SPEED:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Interface speed, in bits per second, to use with a serial printer, such as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 2400, 9600, 19200, etc. Type SET PRINTER /SPEED:? for a list of possible",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" speeds.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The next group deals with print jobs -- how to identify them, how to start",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"them, how to terminate them:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TIMEOUT[:number]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Used with host-directed transparent or auto printing, this is the number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of seconds to wait after the host closes the printer before terminating",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the print job if the printer is not opened again during the specified",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" amount of time.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/JOB-HEADER-FILE[:filename]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The name of a file to be sent to the printer at the beginning of each",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" print job, as a burst page, or to configure the printer. Normally no file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is is sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/END-OF-JOB-STRING[:string]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" String of characters to be sent to the printer at the end of the print",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" job, usually used to force the last or only page out of the printer. When",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" such a string is needed, it usually consists of a single formfeed: \"set",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" printer /end-of-job:{\\12}\". No end-of-job string is sent unless you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specify one with this option. If the string contains any spaces or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" control characters (even in backslash notation, as above), enclose it in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" braces.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The next group is for use with printers that print only PostScript:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/POSTSCRIPT or /PS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Indicates that K95 should convert all text to PostScript before sending",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it to the printer. The fixed-pitch Courier-11 font is used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/WIDTH:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the width of the page in characters. If this switch is not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" given, 80 is used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/HEIGHT:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the height of the page in lines. If this switch is not given",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 66 is used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/NOPOSTSCRIPT or /NOPS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Indicates that K95 should not convert all text to PostScript before",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" sending it to the printer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The final switch is for use with AutoPrint mode and Screen Dumps",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/CHARACTER-SET:<character-set>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the character set used by the printer which may be different",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from both the character set used by the host and by the local computer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default value is CP437.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SHOW PRINTER displays your current printer settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET PRINTER [ { |command, filename } ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the command (such as \"|lpr\") or filename to be used by the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PRINT command. If a filename is given, each PRINT command appends to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" given file. If the SET PRINTER argument contains spaces, it must be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" enclosed in braces, e.g. \"set printer {| lpr -Plaser}\". If the argument",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is omitted the default value is restored. SHOW PRINTER lists the current",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" printer. See HELP PRINT for further info.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Sorry, SET PRINTER not available yet.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* PRINTSWI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef BPRINT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxybprtr[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET BPRINTER [ portname speed [ parity [ flow-control ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (Obsolete, replaced by SET PRINTER /BIDIRECTIONAL.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* BPRINT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyexit[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET EXIT HANGUP { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When ON (which is the default), C-Kermit executes an implicit HANGUP and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CLOSE command on the communications device or connection when it exits.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When OFF, Kermit skips this sequence.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET EXIT ON-DISCONNECT { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When ON, C-Kermit EXITs automatically when a network connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is terminated either by the host or by issuing a HANGUP command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET EXIT STATUS number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Set C-Kermit's program return code to the given number.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Set C-Kermit's program return code to the given number, which can be a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" constant, variable, function result, or arithmetic expression.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET EXIT WARNING { ON, OFF, ALWAYS }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When EXIT WARNING is ON, issue a warning message and ask for confirmation",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" before EXITing if a connection to another computer might still be open.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When EXIT WARNING is ALWAYS, confirmation is always requested. When OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it is never requested. The default is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxpau[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: PAUSE [ { number-of-seconds, hh:mm:ss } ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Example: PAUSE 3 or PAUSE 14:52:30",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Do nothing for the specified number of seconds or until the given time of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" day in 24-hour hh:mm:ss notation. If the time of day is earlier than the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current time, it is assumed to be tomorrow. If no argument given, one",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" second is used. The pause can be interrupted by typing any character on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the keyboard unless SLEEP CANCELLATION is OFF. If interrupted, PAUSE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" fails, otherwise it succeeds. Synonym: SLEEP.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxmsl[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: MSLEEP [ number ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Example: MSLEEP 500",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Do nothing for the specified number of milliseconds; if no number given,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 100 milliseconds.","" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOPUSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int nopush;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxshe[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: !, @, RUN, PUSH, or SPAWN, optionally followed by a command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Gives the command to the local operating system's command processor, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" displays the results on the screen. If the command is omitted, enters the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" system's command line interpreter or shell; exit from it (the command for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" this is usually EXIT or QUIT or LOGOUT) to return to Kermit.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOPUSH */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXMIT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxxmit[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: TRANSMIT [ switches ] filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sends the contents of a file, without any error checking or correction,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to the computer on the other end of your SET LINE or SET HOST connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (or if C-Kermit is in remote mode, displays it on the screen). The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" filename is the name of a single file (no wildcards) to be sent or, if",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the /PIPE switch is included, the name of a command whose output is to be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The file is sent according to your current FILE TYPE setting (BINARY or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TEXT), which you can override with a /BINARY or /TEXT switch without",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" changing the global setting. In text mode, it is sent a line at a time,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with carriage return at the end of each line (as if you were typing it at",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" your keyboard), and C-Kermit waits for a linefeed to echo before sending",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the next line; use /NOWAIT to eliminate the feedback requirement. In",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" binary mode, it is sent a character at a time, with no feedback required.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Normally the transmitted material is echoed to your screen. Use SET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TRANSMIT ECHO OFF or the /NOECHO switch to suppress echoing. Note that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TRANSMIT /NOECHO /NOWAIT /BINARY is a special case, that more or less",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" blasts the file out at full speed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Character sets are translated according to your current FILE and TERMINAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CHARACTER-SET settings when TRANSMIT is in text mode. Include /TRANSPARENT"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to disable character-set translation in text mode (/TRANSPARENT implies",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TEXT).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" There can be no guarantee that the other computer will receive the file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" correctly and completely. Before you start the TRANSMIT command, you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" must put the other computer in data collection mode, for example by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" starting a text editor. TRANSMIT may be interrupted by Ctrl-C. Synonym:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" XMIT. See HELP SET TRANSMIT for further information.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXMIT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxxla[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: TRANSLATE file1 cs1 cs2 [ file2 ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Translates file1 from the character set cs1 into the character set cs2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and stores the result in file2. The character sets can be any of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C-Kermit's file character sets. If file2 is omitted, the translation",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is displayed on the screen. An appropriate intermediate character-set",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is chosen automatically, if necessary. Synonym: XLATE. Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TRANSLATE lasagna.lat latin1 italian lasagna.nrc",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Multiple files can be translated if file2 is a directory or device name,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" rather than a filename, or if file2 is omitted.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxwai[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: WAIT { number-of-seconds, hh:mm:ss } [ <what> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Examples:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" wait 5 cd cts",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" wait 23:59:59 cd",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Waits up to the given number of seconds or the given time of day for the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specified item or event, which can be FILE, the name(s) of one or more",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" modem signals, or nothing. If nothing is specified, WAIT acts like SLEEP.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If one or more modem signal names are given, Kermit waits for the specified"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" modem signals to appear on the serial communication device.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets FAILURE if the signals do not appear in the given time or interrupted",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from the keyboard during the waiting period.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Signals:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" cd = Carrier Detect;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" dsr = Dataset Ready;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" cts = Clear To Send;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ri = Ring Indicate.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If you want Kermit to wait for a file event, then the syntax is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" WAIT <time> FILE { CREATION, DELETION, MODIFICATION } <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"where <time> is as above, and <filename> is the name of a single file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Kermit waits up to the given amount of time for the specified event to occur",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"with the specified file, succeeds if it does, fails if it doesn't.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxwri[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: WRITE name text",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Writes the given text to the named log or file. The text text may include",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" backslash codes, and is not terminated by a newline unless you include the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" appropriate code. The name parameter can be any of the following:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEBUG-LOG",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ERROR (standard error)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE (the OPEN WRITE, OPEN !WRITE, or OPEN APPEND file, see HELP OPEN)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PACKET-LOG",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SCREEN (compare with ECHO)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SESSION-LOG",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TRANSACTION-LOG", "" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NODIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxlook[] = { "Syntax: LOOKUP name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Looks up the given name in the dialing directory or directories, if any,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specified in the most recent SET DIAL DIRECTORY command. Each matching",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" entry is shown, along with any transformations that would be applied to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" portable-format entries based on your locale. HELP DIAL, HELP SET DIAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for further info.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxansw[] = { "Syntax: ANSWER [ <seconds> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Waits for a modem call to come in. Prior SET MODEM TYPE and SET PORT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Waits for a modem call to come in. Prior SET MODEM TYPE and SET LINE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" required. If <seconds> is 0 or not specified, Kermit waits forever or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" until interrupted, otherwise Kermit waits the given number of seconds.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The ANSWER command puts the modem in autoanswer mode. Subsequent DIAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" commands will automatically put it (back) in originate mode. SHOW MODEM,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HELP SET MODEM for more info.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxdial[] = { "Syntax: DIAL phonenumber",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Example: DIAL 7654321",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Dials a number using an autodial modem. First you must SET MODEM TYPE, then",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PORT (or in Windows only, SET PORT TAPI instead of SET MODEM TYPE and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET LINE), then SET SPEED. Then give the DIAL command, including the phone",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET LINE, then SET SPEED. Then give the DIAL command, including the phone",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" number, for example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DIAL 7654321",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NETCONN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the modem is on a network modem server, SET HOST first, then SET MODEM",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TYPE, then DIAL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NETCONN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If you give the DIAL command interactively at the Kermit prompt, and the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"call is placed successfully, Kermit automatically enters CONNECT mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If the DIAL command is given from a macro or command file, Kermit remains",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"in command mode after the call is placed, successfully or not. You can",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"change this behavior with the SET DIAL CONNECT command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If the phonenumber starts with a letter, and if you have used the SET DIAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"DIRECTORY command to specify one or more dialing-directory files, Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"looks it up in the given file(s); if it is found, the name is replaced by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the number or numbers associated with the name. If it is not found, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"name is sent to the modem literally.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If the phonenumber starts with an equals sign (\"=\"), this forces the part",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"after the = to be sent literally to the modem, even if it starts with a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"letter, without any directory lookup.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"You can also give a list of phone numbers enclosed in braces, e.g:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" dial {{7654321}{8765432}{+1 (212 555-1212}}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"(Each number is enclosed in braces and the entire list is also enclosed in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"braces.) In this case, each number is tried until there is an answer. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"phone numbers in this kind of list can not be names of dialing directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"entries.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"A dialing directory is a plain text file, one entry per line:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name phonenumber ; comments",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"for example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" work 9876543 ; This is a comment",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" e-mail +1 (212) 555 4321 ; My electronic mailbox",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" germany +49 (511) 555 1234 ; Our branch in Hanover",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If a phone number starts with +, then it must include country code and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"area code, and C-Kermit will try to handle these appropriately based on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the current locale (HELP SET DIAL for further info); these are called",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"PORTABLE entries. If it does not start with +, it is dialed literally.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If more than one entry is found with the same name, Kermit dials all of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"them until the call is completed; if the entries are in portable format,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Kermit dials them in cheap-to-expensive order: internal, then local, then",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"long-distance, then international, based on its knowledge of your local",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"country code and area code (see HELP SET DIAL).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Specify your dialing directory file(s) with the SET DIAL DIRECTORY command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NETCONN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"See also SET DIAL, SET MODEM, SET LINE, SET HOST, SET SPEED, REDIAL, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"PDIAL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"See also SET DIAL, SET MODEM, SET LINE, SET SPEED, PDIAL, and REDIAL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NETCONN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TAPI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxxtapi[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"TAPI CONFIGURE-LINE <tapi-line>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Displays the TAPI Configure Line Dialog box and allows you to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" alter the default configuration for the specified <tapi-line>.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"TAPI DIALING-PROPERTIES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Displays the TAPI Dialing Properties (locations) Dialog box. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Dialing rules may be changed and locations created and deleted.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When the dialog box is closed, K-95 imports the current Dialing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Properties' Location into the Kermit DIAL command settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxytapi[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI LINE <tapi-line>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Opens a TAPI device for use by Kermit.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI MODEM-DIALING {ON, [OFF]}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If TAPI MODEM-DIALING is OFF when SET TAPI LINE is issued, Kermit opens",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the TAPI device directly as a \"raw port\". The device is unavailable to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" other applications and Kermit performs dialing functions using its",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" built-in dialing and modem databases. If TAPI MODEM-DIALING is ON, TAPI",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" handles all dialing functions and the port may be shared with other",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" applications when a call in not active. When TAPI MODEM-DIALING is OFF,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET MODEM TYPE TAPI Kermit uses the TAPI modem commands imported from the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Windows Registry during the previous SET TAPI LINE call.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI LOCATION <tapi-location>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the TAPI location to make current for the entire system. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <tapi-location>'s dialing properties are imported into Kermit's SET DIAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command database.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI PHONE-NUMBER-CONVERSIONS {ON, OFF, [AUTO]}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Controls whether the phone number conversions are performed by TAPI (ON)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or by Kermit (OFF), or according the type of port that was selected",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (AUTO); AUTO is the default, and is equivalent to ON if the current",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LINE/PORT is a TAPI device and TAPI MODEM-DIALING is ON, OFF otherwise.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI MODEM-LIGHTS {[ON], OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Displays a modem lights indicator on the Windows 95 Taskbar. Does nothing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in Windows NT 4.0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI MANUAL-DIALING {ON, [OFF]}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Displays a dialog box during dialing requesting that you manually dial the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" phone before continuing. Applies only when TAPI MODEM-DIALING is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI WAIT-FOR-CREDIT-CARD-TONE <seconds>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Some modems don't support the '$' (BONG) symbol during dialing, which",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" means \"wait for credit card tone before continuing.\" If TAPI recognizes",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the modem as one that does not support BONG, it replaces the '$' with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <seconds> worth of pauses. The default is 8 seconds. This command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" applies only when TAPI MODEM-DIALING is ON",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI PRE-DIAL-TERMINAL {ON, [OFF]}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI POST-DIAL-TERMINAL {ON, [OFF]}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Displays a small terminal window that may be used to communicate with the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" modem or the host prior to or immediately after dialing; applies only when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TAPI MODEM-DIALING is ON",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI INACTIVITY-TIMEOUT <minutes>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the number of minutes of inactivity that may go by before TAPI",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" disconnects the line. The default is 0 which means disable this function.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Applies only when TAPI MODEM-DIALING is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAPI USE-WINDOWS-CONFIGURATION {ON, [OFF]}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether the TAPI modem values for speed, parity, stop bits, flow",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" control, etc. are used in preference to the current values specified",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" within Kermit-95.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TAPI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NODIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TNCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxiks[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: IKS [ switches ] [ host [ service ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Establishes a new connection to an Internet Kermit Service daemon.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Equivalent to SET NETWORK TYPE TCP/IP, SET HOST host KERMIT /TELNET,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF SUCCESS CONNECT. If host is omitted, the previous connection (if any)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is resumed. Depending on how Kermit has been built switches may be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" available to require a secure authentication method and bidirectional",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" encryption. See HELP SET TELNET for more info.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_AUTHENTICATION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /AUTH:<type> is equivalent to SET TELNET AUTH TYPE <type> and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET TELOPT AUTH REQUIRED with the following exceptions. If the type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is AUTO, then SET TELOPT AUTH REQUESTED is executed and if the type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is NONE, then SET TELOPT AUTH REFUSED is executed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_AUTHENTICATION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_ENCRYPTION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ENCRYPT:<type> is equivalent to SET TELNET ENCRYPT TYPE <type>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and SET TELOPT ENCRYPT REQUIRED REQUIRED with the following exceptions.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the type is AUTO then SET TELOPT AUTH REQUESTED REQUESTED is executed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and if the type is NONE then SET TELOPT ENCRYPT REFUSED REFUSED is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" executed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_ENCRYPTION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /USERID:[<name>]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This switch is equivalent to SET LOGIN USERID <name> or SET TELNET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ENVIRONMENT USER <name>. If a string is given, it sent to host during",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Telnet negotiations; if this switch is given but the string is omitted,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" no user ID is sent to the host. If this switch is not given, your",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current USERID value, \\v(userid), is sent. When a userid is sent to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" host it is a request to login as the specified user.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_AUTHENTICATION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PASSWORD:[<string>]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This switch is equivalent to SET LOGIN PASSWORD. If a string is given,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it is treated as the password to be used (if required) by any Telnet",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Authentication protocol (Kerberos Ticket retrieval, Secure Remote",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Password, or X.509 certificate private key decryption.) If no password",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" switch is specified a prompt is issued to request the password if one",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is required for the negotiated authentication method.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_AUTHENTICATION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxxtel[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: TELNET [ switches ] [ host [ service ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Equivalent to SET NETWORK TYPE TCP/IP, SET HOST host [ service ] /TELNET,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" IF SUCCESS CONNECT. If host is omitted, the previous connection (if any)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is resumed. Depending on how Kermit has been built switches may be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" available to require a secure authentication method and bidirectional",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" encryption. See HELP SET TELNET for more info.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_AUTHENTICATION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /AUTH:<type> is equivalent to SET TELNET AUTH TYPE <type> and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET TELOPT AUTH REQUIRED with the following exceptions. If the type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is AUTO, then SET TELOPT AUTH REQUESTED is executed and if the type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is NONE, then SET TELOPT AUTH REFUSED is executed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_AUTHENTICATION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_ENCRYPTION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /ENCRYPT:<type> is equivalent to SET TELNET ENCRYPT TYPE <type>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and SET TELOPT ENCRYPT REQUIRED REQUIRED with the following exceptions.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the type is AUTO then SET TELOPT AUTH REQUESTED REQUESTED is executed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and if the type is NONE then SET TELOPT ENCRYPT REFUSED REFUSED is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" executed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_ENCRYPTION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /USERID:[<name>]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This switch is equivalent to SET LOGIN USERID <name> or SET TELNET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ENVIRONMENT USER <name>. If a string is given, it sent to host during",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Telnet negotiations; if this switch is given but the string is omitted,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" no user ID is sent to the host. If this switch is not given, your",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current USERID value, \\v(userid), is sent. When a userid is sent to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" host it is a request to login as the specified user.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_AUTHENTICATION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PASSWORD:[<string>]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This switch is equivalent to SET LOGIN PASSWORD. If a string is given,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it is treated as the password to be used (if required) by any Telnet",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Authentication protocol (Kerberos Ticket retrieval, Secure Remote",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Password, or X.509 certificate private key decryption.) If no password",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" switch is specified a prompt is issued to request the password if one",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is required for the negotiated authentication method.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_AUTHENTICATION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxtopt[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"TELOPT { AO, AYT, BREAK, CANCEL, EC, EL, EOF, EOR, GA, IP, DMARK, NOP, SE,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SUSP, SB [ option ], DO [ option ], DONT [ option ],",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" WILL [ option ], WONT [option] }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command lets you send all the Telnet protocol commands. Note that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" certain commands do not require a response, and therefore can be used as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" nondestructive \"probes\" to see if the Telnet session is still open;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" e.g.:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" set host xyzcorp.com",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" telopt nop",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" telopt nop",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" if fail stop 1 Connection lost",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TELOPT NOP is sent twice because the failure of the connection will not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be detected until the second send is attempted. This command is meant",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" primarily as a debugging tool for the expert user.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TNCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHELP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* D O H L P -- Give a help message */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
_PROTOTYP( int dohset, (int) );
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCMDL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
_PROTOTYP( int dohopts, (void) );
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCMDL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
_PROTOTYP( int dohfunc, (int) );
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern struct keytab fnctab[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int nfuncs;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOKVERBS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
_PROTOTYP( int dohkverb, (int) );
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern struct keytab kverbs[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int nkverbs;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOKVERBS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxdcl[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: ARRAY verb operands...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Declares arrays and performs various operations on them. Arrays have",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the following syntax:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\&a[n]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"where \"a\" is a letter and n is a number or a variable with a numeric value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"or an arithmetic expression. The value of an array element can be anything",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"at all -- a number, a character, a string, a filename, etc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The following ARRAY verbs are available:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"[ ARRAY ] DECLARE arrayname[n] [ = initializers... ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Declares an array of the given size, n. The resulting array has n+1",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" elements, 0 through n. Array elements can be used just like any other",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" variables. Initial values can be given for elements 1, 2, ... by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" including = followed by one or more values separated by spaces. If you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" omit the size, the array is sized according to the number of initializers;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" if none are given the array is destroyed and undeclared if it already",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" existed. The ARRAY keyword is optional. Synonym: [ ARRAY ] DCL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"[ ARRAY ] UNDECLARE arrayname",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Destroys and undeclares the given array. Synonym: ARRAY DESTROY.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ARRAY SHOW [ arrayname ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Displays the contents of the given array. A range specifier can be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" included to display a segment of the array, e.g. \"array show \\&a[1:24].\""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the arrayname is omitted, all declared arrays are listed, but their",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" contents is not shown. Synonym: SHOW ARRAY.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ARRAY CLEAR arrayname",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Clears all elements of the array, i.e. sets them to empty values.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" You may include a range specifier to clear a segment of the array rather",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" than the whole array, e.g. \"array clear \\%a[22:38]\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ARRAY SET arrayname value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets all elements of the array to the given value. You may specify a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" range to set a segment of the array, e.g. \"array set \\%a[2:9] 0\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ARRAY RESIZE arrayname number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Changes the size of the given array, which must already exist, to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" number given. If the number is smaller than the current size, the extra",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" elements are discarded; if it is larger, new empty elements are added.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ARRAY COPY array1 array2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Copies array1 to array2. If array2 has not been declared, it is created",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" automatically. Range specifiers may be given on one or both arrays.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"ARRAY LINK array1 arra2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Makes array1 a link to array2.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"[ ARRAY ] SORT [ switches ] array-name [ array2 ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sorts the given array lexically according to the switches. Element 0 of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the array is excluded from sorting by default. The ARRAY keyword is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" optional. If a second array name is given, that array is sorted according",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to the first one. Switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /CASE:{ON,OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If ON, alphabetic case matters; if OFF it is ignored. If this switch is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" omitted, the current SET CASE setting applies.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /KEY:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Position (1-based column number) at which comparisons begin, 1 by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NUMERIC",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a numeric rather than lexical sort.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /RANGE:low[:high]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The range of elements, low through high, to be sorted. If this switch",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is not given, elements 1 through the dimensioned size are sorted. If",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" :high is omitted, the dimensioned size is used. To include element 0 in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a sort, use /RANGE:0 (to sort the whole array) or /RANGE:0:n (to sort",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" elements 0 through n). You can use a range specifier in the array name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" instead of the /RANGE switch.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /REVERSE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sort in reverse order. If this switch is not given, the array is sorted",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in ascending order.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Various functions are available for array operations; see HELP FUNCTION for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"details. These include \\fdimension(), \\farraylook(), \\ffiles(), \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
\\fsplit(),",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"and many more.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ZCOPY
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxxcpy[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: COPY [ switches ] file1 file2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Copies the source file (file1) to the destination file (file2). If file2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is a directory, file1 can contain wildcards to denote a group of files to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be copied to the given directory. Switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /LIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Print the filenames and status while copying. Synonyms: /LOG, /VERBOSE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOLIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Copy silently (default). Synonyms: /NOLOG, /QUIET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SWAP-BYTES",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Swap bytes while copying.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /FROMB64",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Convert from Base64 encoding while copying.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TOB64",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Convert to Base64 encoding while copying.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ZCOPY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hmxxren[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef LOCUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If LOCUS is REMOTE or LOCUS is AUTO and you have an FTP connection,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" this command is equivalent to REMOTE RENAME (RREN). Otherwise:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* LOCUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: RENAME [ switches ] name1 name2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Renames the source file (name1) to the target name2. If name2 is a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory, name1 is allowed to contain wildcards, and the file(s) matching",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name1 are moved to directory name2, subject to rules of the underlying",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" operating system regarding renaming across disk boundaries, etc. If name2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is not a directory, name1 may not include wildcards, and the file whose",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name is name1 is renamed to name2. Switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /LIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Print the filenames and status while renaming. Synonyms: /LOG, /VERBOSE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOLIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Rename silently (default). Synonyms: /NOLOG, /QUIET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
cmdlhlp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Command-line options are given after the program name in the system",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"command that you use to start Kermit. Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" kermit -i -s oofa.exe",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"tells Kermit to send (-s) the file oofa.exe in binary (-i) mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Command-line options are case-sensitive; \"-s\" is different from \"-S\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"In VMS, uppercase options must be enclosed in doublequotes: ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" $ kermit \"-Y\" \"-S\" -s oofa.txt ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If any \"action options\" are included on the command line, Kermit exits",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"after executing its command-line options. If -S is included, or no action",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"options were given, Kermit enters its interactive command parser and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"issues its prompt.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Command-line options are single characters preceded by dash (-). Some",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"require an \"argument,\" others do not. If an argument contains spaces, it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"must be enclosed in doublequotes:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" kermit -s \"filename with spaces\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
An option that does not require an argument can be bundled with other options:"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" kermit -Qis oofa.exe",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Exceptions to the rules:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . If the first command-line option is a filename, Kermit executes commands",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from the file. Additional command-line options can follow the filename.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . The special option \"=\" (equal sign) or \"--\" (double hyphen) means to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" treat the rest of the command line as data, rather than commands; this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" data is placed in the argument vector array, \\&@[], along with the other",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" items on the command line, and also in the top-level \\%1..\\%9 variables."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KERBANG
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . A similar option \"+\" (plus sign) means: the name of a Kermit script",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" file follows. This file is to be executed, and its name assigned to \\%0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and \\&_[0]. All subsequent command-line arguments are to be ignored by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit but made available to the script as \\%1, \\%2, ..., as well as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in the argument-vector arrays. The initialization file is not executed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" automatically in this case.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KERBANG */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . The -s option can accept multiple filenames, separated by spaces.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . the -j and -J options allow an optional second argument, the TCP port",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name or number.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Type \"help options all\" to list all the command-line options.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Type \"help option x\" to see the help message for option x.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Kermit also offers a selection of \"extended command-line\" options.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"These begin with two dashes, followed by a keyword, and then, if the option",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"has arguments, a colon (:) or equal sign (=) followed by the argument.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Unlike single-letter options, extended option keywords aren't case sensitive",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"and they can be abbreviated to any length that still distinguishes them from",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"other extended-option keywords. Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" kermit --banner:oofa.txt",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"which designates the file oofa.txt to be printed upon startup, rather than",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the built-in banner (greeting) text. To obtain a list of available",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"extended options, type \"help extended-options ?\". To get help about all",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"extended options, type \"help extended-options\". To get help about a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"particular extended option, type \"help extended-option xxx\", where \"xxx\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"is the option keyword.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef COMMENT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOIKSD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"At present, most of the extended options apply only to the Internet Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Service Daemon (IKSD). Type \"help iksd\" for details.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOIKSD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* COMMENT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHELP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCMDL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
doxopts() {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern char * xopthlp[], * xarghlp[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern struct keytab xargtab[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int nxargs;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int i, x, y, n = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TTGWSIZ
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
ttgcwsz();
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Check whether window size changed */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (ttgwsiz() > 0) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (tt_rows > 0 && tt_cols > 0) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
cmd_rows = tt_rows;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
cmd_cols = tt_cols;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TTGWSIZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
y = cmkey(xargtab,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
nxargs,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Extended argument without the \"--\" prefix",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xxstring
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (y == -3) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for (i = 0; i <= XA_MAX; i++) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xopthlp[i]) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("%s\n",xopthlp[i]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" %s\n",xarghlp[i]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n += 3;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (n > (cmd_rows - 6)) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!askmore())
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(1);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} else if (y < 0)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(y);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n%s\n",xopthlp[y]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" %s\n\n",xarghlp[y]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(1);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
dohopts() {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int i, n, x, y, z, all = 0, msg = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
char *s;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern char *opthlp[], *arghlp[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern char * xopthlp[], * xarghlp[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int optact[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmtxt("A command-line option character,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
or the word ALL, or carriage return for an overview",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"", &s, xxstring)) < 0)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!*s)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
msg = 1;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else if (!strcmp(s,"all") || (!strcmp(s,"ALL")))
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
all = 1;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else if (*s == '-') /* Be tolerant of leading hyphen */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s++;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!all && (int)strlen(s) > 1) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("?A single character, please, or carriage to list them all.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(-9);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (all) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
y = 33;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
z = 127;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} else {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
y = *s;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
z = (y == 0) ? 127 : y;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (y == 0) y = 33;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TTGWSIZ
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
ttgcwsz();
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Check whether window size changed */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (ttgwsiz() > 0) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (tt_rows > 0 && tt_cols > 0) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
cmd_rows = tt_rows;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
cmd_cols = tt_cols;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TTGWSIZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for (i = 0, n = 1; msg != 0 && *cmdlhlp[i]; i++) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("%s\n",cmdlhlp[i]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (++n > (cmd_rows - 3)) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!askmore())
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (all) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("The following command-line options are available:\n\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n += 2;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for (i = y; msg == 0 && i <= z; i++) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!opthlp[i])
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
continue;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (arghlp[i]) { /* Option with arg */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" -%c <arg>%s\n",(char)i,(optact[i]?" (action option)":""));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" %s\n",opthlp[i]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Argument: %s\n\n",arghlp[i]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
x = 4;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} else { /* Option without arg */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" -%c %s%s\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
(char)i, opthlp[i],
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
(optact[i]?" (action option)":"")
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Argument: (none)\n\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
x = 3;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n += x;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (n > (cmd_rows - x - 1)) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!askmore())
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (all) { /* Jeff, Jan 2003 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (++n >= cmd_rows) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!askmore())
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("The following extended options are available:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (++n >= cmd_rows) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!askmore())
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (++n >= cmd_rows) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!askmore())
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for (i = 0; i <= XA_MAX; i++) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xopthlp[i]) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("%s\n",xopthlp[i]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" %s\n",xarghlp[i]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n += 3;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (n > (cmd_rows - 4)) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!askmore())
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(1);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCMDL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHELP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKCHANNELIO
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxfile[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FILE <subcommand> [ switches ] <channel> [ <data> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Opens, closes, reads, writes, and manages local files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The FILE commands are:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE OPEN (or FOPEN) -- Open a local file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE CLOSE (or FCLOSE) -- Close an open file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE READ (or FREAD) -- Read data from an open file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE WRITE (or FWRITE) -- Write data to an open file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE LIST (or FLIST) -- List open files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE STATUS (or FSTATUS) -- Show status of a channel.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE REWIND (or FREWIND) -- Rewind an open file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE COUNT (or FCOUNT) -- Count lines or bytes in an open file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE SEEK (or FSEEK) -- Seek to specified spot in an open file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE FLUSH (or FFLUSH) -- Flush output buffers for an open file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Type HELP FILE OPEN or HELP FOPEN for details about FILE OPEN;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"type HELP FILE CLOSE or HELP FCLOSE for details about FILE CLOSE, and so on.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The following variables are related to the FILE command:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\v(f_max) -- Maximum number of files that can be open at once",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\v(f_error) -- Completion code of most recent FILE command or function",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\v(f_count) -- Result of most recent FILE COUNT command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The following functions are related to the FILE command:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_eof() -- Check if channel is at EOF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_pos() -- Get channel read/write position (byte number)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_line() -- Get channel read/write position (line number)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_handle() -- Get file handle",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_status() -- Get channel status",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_getchar() -- Read character",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_getline() -- Read line",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_getblock() -- Read block",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_putchar() -- Write character",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_putline() -- Write line",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_putblock() -- Write block",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\F_errmsg() -- Error message from most recent FILE command or function",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Type HELP <function-name> for information about each one.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxf_op[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FILE OPEN [ switches ] <variable> <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Opens the file indicated by <filename> in the mode indicated by the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" switches, if any, or if no switches are included, in read-only mode, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" assigns a channel number for the file to the given variable.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonym: FOPEN. Switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/READ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Open the file for reading.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/WRITE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Open the file for writing. If /READ was not also specified, this creates",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a new file. If /READ was specifed, the existing file is preserved, but",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" writing is allowed. In both cases, the read/write pointer is initially",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" at the beginning of the file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/APPEND",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the file does not exist, create a new file and open it for writing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the file exists, open it for writing, but with the write pointer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" positioned at the end.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/BINARY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Opens the file in binary mode to inhibit end-of-line conversions.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Opens the file in binary mode to inhibit end-of-line conversions.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This option is ignored in UNIX.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This option is ignored on this platform.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Switches can be combined in an way that makes sense and is supported by the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"underlying operating system.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxf_cl[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FILE CLOSE <channel>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Closes the file on the given channel if it was open.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also see HELP FILE OPEN. Synonym: FCLOSE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxf_fl[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FILE FLUSH <channel>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Flushes output buffers on the given channel if it was open, forcing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" all material previously written to be committed to disk. Synonym: FFLUSH.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also available as \\F_flush().",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxf_li[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FILE LIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lists the channel number, name, modes, and position of each file opened",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with FILE OPEN. Synonym: FLIST.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxf_re[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FILE READ [ switches ] <channel> [ <variable> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Reads data from the file on the given channel number into the <variable>,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" if one was given; if no variable was given, the result is printed on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the screen. The variable should be a macro name rather than a \\%x",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" variable or array element if you want backslash characters in the file to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be taken literally. Synonym: FREAD. Switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LINE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that a line of text is to be read. A line is defined according",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to the underlying operating system's text-file format. For example, in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UNIX a line is a sequence of characters up to and including a linefeed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The line terminator (if any) is removed before assigning the text to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" variable. If no switches are included with the FILE READ command, /LINE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is assumed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/SIZE:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that the given number of bytes (characters) is to be read.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This gives a semblance of \"record i/o\" for files that do not necessarily",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" contain lines. The resulting block of characters is assigned to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" variable without any editing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/CHARACTER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Equivalent to /SIZE:1. If FILE READ /CHAR succeeds but the <variable> is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" empty, this indicates a NUL byte was read.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/TRIM",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit to trim trailing whitespace when used with /LINE. Ignored",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" if used with /CHAR or /SIZE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/UNTABIFY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit to convert tabs to spaces (assuming tabs set every 8 spaces)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when used with /LINE. Ignored if used with /CHAR or /SIZE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Synonym: FREAD.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also available as \\F_getchar(), \\F_getline(), \\F_getblock().",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxf_rw[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FILE REWIND <channel>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the channel is open, moves the read/write pointer to the beginning of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the file. Equivalent to FILE SEEK <channel> 0. Synonym: FREWIND.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also available as \\F_rewind().",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxf_se[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FILE SEEK [ switches ] <channel> { [{+,-}]<number>, EOF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Switches are /BYTE, /LINE, /RELATIVE, ABSOLUTE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Moves the file pointer for this file to the given position in the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" file. Subsequent FILE READs or WRITEs will take place at that position.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If neither the /RELATIVE nor /ABSOLUTE switch is given, an unsigned",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <number> is absolute; a signed number is relative. EOF means to move to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the end of the file. Synonym: FSEEK. Also available as \\F_seek().",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxf_st[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FILE STATUS <channel>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the channel is open, this command shows the name of the file, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" switches it was opened with, and the current read/write position.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonym: FSTATUS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxf_co[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: FILE COUNT [ { /BYTES, /LINES, /LIST, /NOLIST } ] <channel>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the channel is open, this command prints the nubmer of bytes (default)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or lines in the file if at top level or if /LIST is included; if /NOLIST",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is given, the result is not printed. In all cases the result is assigned",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to \\v(f_count). Synonym: FCOUNT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hxxf_wr[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"FILE WRITE [ switches ] <channel> <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Writes the given text to the file on the given channel number. The <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" can be literal text or a variable, or any combination. If the text might",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" contain leading or trailing spaces, it must be enclosed in braces if you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" want to preserve them. Synonym: FWRITE. Switches:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LINE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that an appropriate line terminator is to be added to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" end of the <text>. If no switches are included, /LINE is assumed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/SIZE:number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that the given number of bytes (characters) is to be written.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the given <text> is longer than the requested size, it is truncated;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" if is shorter, it is padded according /LPAD and /RPAD switches. Synonym:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /BLOCK.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/LPAD[:value]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If /SIZE was given, but the <text> is shorter than the requested size,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the text is padded on the left with sufficient copies of the character",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" whose ASCII value is given to write the given length. If no value is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specified, 32 (the code for Space) is used. The value can also be 0 to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" write the indicated number of NUL bytes. If /SIZE was not given, this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" switch is ignored.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/RPAD[:value]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Like LPAD, but pads on the right.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/STRING",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that the <text> is to be written as-is, with no terminator added."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"/CHARACTER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies that one character should be written. If the <text> is empty or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" not given, a NUL character is written; otherwise the first character of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <text> is given.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Synonym FWRITE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also available as \\F_putchar(), \\F_putline(), \\F_putblock().",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static int
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
dohfile(cx) int cx; {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern struct keytab fctab[];
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int nfctab;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int x;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (cx == XXFILE) { /* FILE command was given */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Get subcommand */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((cx = cmkey(fctab,nfctab,"Operation","",xxstring)) < 0) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (cx == -3) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
cx = XXFILE;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(cx);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
switch (cx) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FIL_CLS: cx = XXF_CL; break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FIL_FLU: cx = XXF_FL; break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FIL_LIS: cx = XXF_LI; break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FIL_OPN: cx = XXF_OP; break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FIL_REA: cx = XXF_RE; break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FIL_REW: cx = XXF_RW; break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FIL_SEE: cx = XXF_SE; break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FIL_STA: cx = XXF_ST; break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FIL_WRI: cx = XXF_WR; break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FIL_COU: cx = XXF_CO; break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
switch (cx) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXFILE: return(hmsga(hxxfile));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXF_CL: return(hmsga(hxxf_cl));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXF_FL: return(hmsga(hxxf_fl));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXF_LI: return(hmsga(hxxf_li));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXF_OP: return(hmsga(hxxf_op));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXF_RE: return(hmsga(hxxf_re));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXF_RW: return(hmsga(hxxf_rw));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXF_SE: return(hmsga(hxxf_se));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXF_ST: return(hmsga(hxxf_st));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXF_WR: return(hmsga(hxxf_wr));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXF_CO: return(hmsga(hxxf_co));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
default:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(-2);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKCHANNELIO */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
dohlp(xx) int xx; {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int x,y;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
debug(F101,"DOHELP xx","",xx);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx < 0) return(xx);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NOHELP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n%s, Copyright (C) 1985, 2005,",versio);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOIKSD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (inserver)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(tophlpi));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* IKSD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(tophlp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* help is available */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (helpfile)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dotype(helpfile,xaskmore,0,0,NULL,0,NULL,0,0,NULL,0));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKCHANNELIO
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx == XXFILE)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dohfile(xx));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else if (xx == XXF_RE || xx == XXF_WR || xx == XXF_OP ||
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == XXF_CL || xx == XXF_SE || xx == XXF_RW ||
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == XXF_FL || xx == XXF_LI || xx == XXF_ST || xx == XXF_CO)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dohfile(xx));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKCHANNELIO */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
switch (xx) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXASS: /* ASSIGN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxass));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXASK: /* ASK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXASKQ: /* ASKQ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxask));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXAPC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: APC text\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Echoes the text within a VT220/320/420 Application Program Command."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXBUG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Describes how to get technical support."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXBEEP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: BEEP [ { ERROR, INFORMATION, WARNING } ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Generates a bell according to the current settings. If SET BELL is set to\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
\"system-sounds\" then the appropriate System Sound will be generated.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Default is INFORMATION."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: BEEP\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Sends a BEL character to your terminal."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXBYE: /* BYE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(hmxxbye));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCHK: /* check */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Syntax: CHECK name\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Checks\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
to see if the named feature is included in this version of Kermit.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
To list the features you can check, type \"check ?\"."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCLE: /* clear */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxcle));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCLO: /* close */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxclo));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCOM: /* comment */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef STRATUS /* Can't use # for comments in Stratus VOS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Syntax: COMMENT text\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Example: COMMENT - this is a comment.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Introduces a comment. Beginning of command line only. Commands may also\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
have trailing comments, introduced by ; or #."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Syntax: COMMENT text\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Example: COMMENT - this is a comment.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Introduces a comment. Beginning of command line only. Commands may also\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
have trailing comments, introduced by ; (semicolon)."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* STRATUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCON: /* CONNECT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCQ: /* CQ == CONNECT /QUIETLY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
hmsga(hmxxcon);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Your escape character is Ctrl-%c (ASCII %d, %s)\r\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
ctl(escape), escape, (escape == 127 ? "DEL" : ccntab[escape]));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ZCOPY
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCPY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxcpy));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ZCOPY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLINK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LINK source destination\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
creates a hard link to the file specified by source to the filename\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
specified by destination. Hard links are only supported on NTFS.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
destination can either be a filename or a directory. source may\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
contain wildcards if destination is a directory."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLREN: /* LRENAME */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LRENAME is an alias for the RENAME command forcing it to execute\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
on the local computer. Also see: RENAME, RRENAME, SET LOCUS."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXREN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxren));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCDUP: /* CDUP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLCDU:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Change working directory to the one just above the current one."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLCWD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LCD (LCWD) is an alias for the CD (CWD) command forcing it to execute\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
on the local computer. Also see: CD, CDUP, RCD, SET LOCUS."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCWD: /* CD / CWD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxcwd));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXKCD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxkcd));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXARRAY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXDCL: /* DECLARE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSORT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxdcl));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXDEF: /* DEFINE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (hlptok) /* What they actually typed... */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (hlptok[0] == '.')
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxdot));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxdef));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXUNDEF: /* UNDEFINE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: UNDEFINE variable-name\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Undefines a macro or variable."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLDEL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LDELETE is an alias for the DELETE command forcing it to execute\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
on the local computer. Also see: DELETE, RDELETE, SET LOCUS."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXDEL: /* delete */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxdel));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NODIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXDIAL: /* DIAL, etc... */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxdial));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPDIA: /* PDIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: PDIAL phonenumber\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Partially dials a phone number. Like DIAL but does not wait for carrier\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
or CONNECT message."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRED:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Redial the number given in the most recent DIAL commnd."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXANSW: /* ANSWER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxansw));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLOOK: /* LOOKUP number in directory */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxlook));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NODIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLDIR: /* LDIRECTORY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LDIRIRECTORY is an alias for the DIRECTORY command forcing it to execute\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
on the local computer. Also see: DIRECTORY, SET LOCUS, RDIRECTORY."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXDIR: /* DIRECTORY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxdir));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLMKD: /* LMKDIR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LMKDIR is an alias for the MKDIR command forcing it to execute\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
on the local computer. Also see: MKDIR, RMKDIR, SET LOCUS."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXMKDIR: /* MKDIR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Creates a directory. Also see LRMDIR, RRMDIR, SET LOCUS."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLRMD: /* LRMDIR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LRMDIR is an alias for the RMDIR command forcing it to execute\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
on the local computer. Also see: RMDIR, RRMDIR, SET LOCUS."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRMDIR: /* RMDIR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Removes a directory. Also see LRMDIR, RRMDIR, SET LOCUS."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIXOROSK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: LS [ args ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Runs \"ls\" with the given arguments."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxdir));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIXOROSK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSERVER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXDIS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: DISABLE command\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Security for the Kermit server. Prevents the client Kermit program from\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
executing the named REMOTE command, such as CD, DELETE, RECEIVE, etc."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSERVER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXDO: /* do */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: [ DO ] macroname [ arguments ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Executes a macro that was defined with the DEFINE command. The word DO\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
can be omitted. Trailing argument words, if any, are automatically\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
assigned to the macro argument variables \\%1 through \\%9."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXDEC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxdec));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXECH: /* echo */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: ECHO text\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Displays the text on the screen, followed by a line terminator. The ECHO\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
text may contain backslash codes. Example: ECHO \\7Wake up!\\7. Also see\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
XECHO and WRITE SCREEN."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXXECH: /* xecho */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: XECHO text\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Just like ECHO but does not add a line terminator to the text. See ECHO."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXVOID:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: VOID text\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Like ECHO but doesn't print anything; can be used to invoke functions\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
when you don't need to display or use their results."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSERVER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXENA:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: ENABLE capability\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
For use with server mode. Allows the client Kermit program access to the\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
named capability, such as CD, DELETE, RECEIVE, etc. Opposite of DISABLE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSERVER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXEND: /* end */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: END [ number [ message ] ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Exits from the current macro or TAKE file, back to wherever invoked from.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Number is return code. Message, if given, is printed."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXEVAL: /* evaluate */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxeval));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXERR: /* e-packet */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: E-PACKET\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Sends an Error packet to the other Kermit."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXEXI: /* exit */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXQUI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxexit));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXFIN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: FINISH\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Tells the remote Kermit server to shut down without logging out."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXFOR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(forhlp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXGET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxget));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXMGET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxmget));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXGOK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: GETOK [ switches ] prompt\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Prints the prompt, makes user type 'yes', 'no', or 'ok', and sets SUCCESS\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
or FAILURE accordingly. The optional switches are the same as for ASK."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXGOTO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: GOTO label\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
In a TAKE file or macro, go to the given label. A label is a word on the\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
left margin that starts with a colon (:). Example:\n\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
:oofa\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
echo Hello!\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
goto oofa"));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXHAN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: HANGUP\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Hang up the phone or network connection."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXHLP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/*
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
We get confirmation here, even though we do it again in hmsga(), to prevent
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
the Copyright message from being printed prematurely. This doesn't do any
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
harm, because the first call to cmcfm() sets cmflgs to 1, making the second
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
call return immediately.
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
*/
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (helpfile) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n%s, Copyright (C) 1985, 2005,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Trustees of Columbia University in the City of New York.\n\n",versio);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dotype(helpfile,xaskmore,3,0,NULL,0,NULL,0,0,NULL,0));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} else {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n%s, Copyright (C) 1985, 2005,",versio);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(tophlp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXINT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("The INTRO command gives a brief introduction to Kermit 95."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("The INTRO command gives a brief introduction to C-Kermit."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXIF:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(ifhlp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXINC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxinc));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXINP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxinp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_MINPUT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXMINP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxminp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_MINPUT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXREI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REINPUT n string\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Looks for the string in the text that has recently been INPUT, set SUCCESS\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
or FAILURE accordingly. Timeout, n, must be specified but is ignored."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLBL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Introduces a label, like :loop, for use with GOTO in TAKE files or macros.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
See GOTO."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLOG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxlg));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSCRIPT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLOGI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxlogi));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXMAI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: MAIL filename address\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Equivalent to SEND /MAIL:address filename."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOMSEND
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXMSE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxmse));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXADD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxadd));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXMMOVE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("MMOVE is exactly like MSEND, except each file that is\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
sent successfully is deleted after it is sent."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOMSEND */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXOPE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(openhlp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXNEW:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Prints news of new features since publication of \"Using C-Kermit\"."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXUPD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" New features are described in the online Kermit 95 manual,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
accessible via the MANUAL command."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXOUT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxout));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ANYX25
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef IBMX25
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPAD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxpad));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* IBMX25 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ANYX25 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPAU:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxpau));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXMSL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxmsl));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TCPSOCKET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPNG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: PING [ IP-hostname-or-number ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Checks if the given IP network host is reachable. Default host is from\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
most recent SET HOST or TELNET command. Runs system PING program, if any.")
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXFTP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SYSFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: FTP [ IP-hostname-or-number ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Makes an FTP connection to the given IP host or, if no host specified, to\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
the current host. Uses the system's FTP program, if any."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(doftphlp());
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SYSFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TCPSOCKET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPRI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: PRINT file [ options ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Prints the local file on a local printer with the given options. Also see\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
HELP SET PRINTER."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: PRINT file [ options ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Prints the local file on a local printer with the given options. Also see\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
HELP SET PRINTER."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: PRINT file\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Prints the local file on a local printer. Also see HELP SET PRINTER."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPWD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLPWD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: PWD\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Print the name of the current working directory."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXREA:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: READ variablename\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Reads a line from the currently open READ or !READ file into the variable\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
(see OPEN)."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXREC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxrc));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXREM:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
y = cmkey(remcmd,nrmt,"Remote command","",xxstring);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dohrmt(y));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: RETURN [ value ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Return from a macro. An optional return value can be given for use with\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
\\fexecute(macro), which allows macros to be used like functions."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSEN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxsen));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXMOVE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("MOVE is exactly like SEND, except each file that is\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
sent successfully is deleted after it is sent."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NORESEND
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRSEN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(hmxxrsen));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXREGET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(hmxxrget));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPSEN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(hmxxpsen));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NORESEND */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSERVER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSER:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(hmxxser));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSERVER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOJC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSUS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SUSPEND or Z\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Suspends Kermit. Continue Kermit with the appropriate system command,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
such as fg."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOJC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
y = cmkey(prmtab,nprm,"Parameter","",xxstring);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
debug(F101,"HELP SET y","",y);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dohset(y));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOPUSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSHE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (nopush) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Sorry, help not available for \"%s\"\n",cmdbuf);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxshe));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_REDIR
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXFUN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REDIRECT command\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Runs the given local command with its standard input and output redirected\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
to the current SET LINE or SET HOST communications path.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: < (Left angle bracket)."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_REDIR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_REXX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXREXX:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REXX text\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The text is a Rexx command to be executed. The \\v(rexx) variable is set\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
to the Rexx command's return value.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
To execute a rexx program file, use: REXX call <filename>\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Rexx programs may call Kermit functions by placing the Kermit command\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
in single quotes. For instance: 'set parity none'."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_REXX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOPUSH */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSHOW
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSHO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Display current values of various items (SET parameters, variables, etc).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Type SHOW ? for a list of categories."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSHOW */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSPA:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef datageneral
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Display disk usage in current device, directory,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
or return space for a specified device, directory."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SPACE\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Display disk usage in current device and/or directory"));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSTA:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: STATISTICS [/BRIEF]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Display statistics about most recent file transfer"));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSTO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: STOP [ number [ message ] ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Stop executing the current macro or TAKE file and return immediately to\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
the Kermit prompt. Number is a return code. Message printed if given."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXTAK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxtak));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TCPSOCKET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TNCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXIKSD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxiks));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXTEL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxtel));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXTELOP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxtopt));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TNCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RLOGCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRLOG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: RLOGIN [ switches ] [ host [ username ] ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Equivalent to SET NETWORK TYPE TCP/IP, SET HOST host [ service ] /RLOGIN,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
IF SUCCESS CONNECT. If host is omitted, the previous connection (if any)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
is resumed. Depending on how Kermit has been built switches may be\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
available to require Kerberos authentication and DES encryption."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RLOGCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TCPSOCKET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXMIT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXTRA:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxxmit));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXMIT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXTYP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxtyp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXMORE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: MORE [ switches ] filename\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Equivalent to TYPE /PAGE filename; see HELP TYPE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCAT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: MORE [ switches ] filename\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Equivalent to TYPE /NOPAGE filename; see HELP TYPE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXHEAD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: HEAD [ switches ] filename\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Equivalent to TYPE /HEAD filename; see HELP TYPE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXTAIL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: TAIL [ switches ] filename\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Equivalent to TYPE /TAIL filename; see HELP TYPE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXWHI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(whihlp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSWIT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(swihlp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXXLA:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxxla));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXVER:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: VERSION\nDisplays the program version number."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXWAI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxwai));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXWHO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: WHO [ user ]\nDisplays info about the user."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXWRI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxwri));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXWRL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"WRITE-LINE (WRITELN) is just like WRITE, but includes a line terminator\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
at the end of text. See WRITE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXIFX:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(ifxhlp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXGETC: /* GETC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxgetc));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXFWD: /* FORWARD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Like GOTO, but searches only forward for the label. See GOTO."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLOCAL: /* LOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Declares a variable to be local to the current macro or command file."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXVIEW:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"View the terminal emulation screen even when there is no connection."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXASC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Synonym for SET FILE TYPE TEXT."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXBIN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Synonym for SET FILE TYPE BINARY."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXDATE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxdate));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRETR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Just like GET but asks the server to delete each file that has been\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
sent successfully."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXEIGHT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Equivalent to SET PARITY NONE, SET COMMAND BYTE 8, SET TERMINAL BYTE 8."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSAVE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxsave));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOPUSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXEDIT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: EDIT [ <file> ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Starts your preferred editor on the given file, or if none given, the most\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
recently edited file, if any. Also see SET EDITOR."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOPUSH */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef BROWSER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXBROWS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: BROWSE [ <url> ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Starts your preferred Web browser on the given URL, or if none given, the\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
most recently visited URL, if any. Also see SET BROWSER."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* BROWSER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TAPI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXTAPI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxxtapi));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TAPI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef PIPESEND
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCSEN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: CSEND [ switches ] <command> [ <as-name> ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Sends from the given <command> rather than from a file. Equivalent to\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
SEND /COMMAND; see HELP SEND for details."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCREC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: CRECEIVE [ switches ] <command>\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Receives to the given <command> rather than to a file. Equivalent to\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
RECEIVE /COMMAND; see HELP RECEIVE for details."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCGET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: CGET <remote-file-or-command> <local-command>\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Equivalent to GET /COMMAND; see HELP GET for details."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* PIPESEND */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXFUNC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/*
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Tricky parsing. We want to let them type the function name in any format
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
at all: \fblah(), \fblah, \\fblah(), fblah, blah, blah(), etc, but of course
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
only one of these is recognized by cmkey(). So we call cmkeyx() (the "no
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
complaints" version of cmkey()), and if it fails, we try the other formats
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
silently, and still allow for <no-name-given>, editing and reparse, etc.
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
*/
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
y = cmkeyx(fnctab,nfuncs,"Name of function","",NULL);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (y == -1) { /* Reparse needed */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(y);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} else if (y == -3) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) /* For recall buffer... */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dohfunc(y)); /* -3 gives general message */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (y < 0) { /* Something given but didn't match */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int dummy;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
char * p;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for (p = atmbuf; *p; p++) { /* Chop off trailing parens if any */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (*p == '(') {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
*p = NUL;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Chop off leading "\\f" or "\f" or "f" */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
p = atmbuf;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (*p == CMDQ) /* Allow for \\f... */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
p++;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (*p == CMDQ && (*(p+1) == 'f' || *(p+1) == 'F')) { /* or \f */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
p += 2;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} else if (*p == 'f' || *p == 'F') { /* or just f */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
p++;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
y = lookup(fnctab,p,nfuncs,&dummy); /* Look up the result */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (y < 0) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("?No such function - \"%s\"\n",atmbuf);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(-9);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
x = cmgbrk(); /* Find out how user terminated */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (x == LF || x == CR) /* if with CR or LF */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
cmflgs = 1; /* restore cmflgs to say so */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) /* And THEN confirm so command will */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x); /* get into recall buffer. */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dohfunc(y));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCMDL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXOPTS: /* Command-line options */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dohopts());
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXXOPTS: /* Extended command-line options */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(doxopts());
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCMDL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOKVERBS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXKVRB: {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
y = cmkeyx(kverbs,nkverbs,"Name of keyboard verb without \\k","",NULL);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (y == -1) { /* Reparse needed */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(y);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} else if (y == -3) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) /* For recall buffer... */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dohkverb(y)); /* -3 gives general message */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (y < 0) { /* Something given but didn't match */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int dummy;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
char * p;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for (p = atmbuf; *p; p++) { /* Chop off trailing parens if any */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (*p == '(') {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
*p = NUL;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Chop off leading "\\k" or "\k" or "k" */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
p = atmbuf;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (*p == CMDQ) /* Allow for \\k... */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
p++;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (*p == CMDQ && (*(p+1) == 'k' || *(p+1) == 'K')) { /* or \k */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
p += 2;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} else if (*p == 'k' || *p == 'K') { /* or just k */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
p++;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
y = lookup(kverbs,p,nkverbs,&dummy); /* Look up the result */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (y < 0) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("?No such function - \"%s\"\n",atmbuf);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(-9);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
x = cmgbrk(); /* Find out how user terminated */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (x == LF || x == CR) /* if with CR or LF */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
cmflgs = 1; /* restore cmflgs to say so */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) /* And THEN confirm so command will */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(x); /* get into recall buffer. */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dohkverb(y));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOKVERBS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXKERMI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: KERMIT [command-line-options]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Lets you give command-line options at the prompt or in a script.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
HELP OPTIONS for more info."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXBACK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: BACK\n Returns to your previous directory."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXWHERE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: WHERE\n Tells where your transferred files went."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXREMV:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxremv));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_KERBEROS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXAUTH:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxauth));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_KERBEROS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHTTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXHTTP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxhttp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHTTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NETCMD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPIPE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: PIPE [ command ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Makes a connection through the program whose command line is given. Example:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
\n pipe rlogin xyzcorp.com"));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NETCMD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSTATUS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"STATUS is the same as SHOW STATUS; prints SUCCESS or FAILURE for the\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
previous command."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXASSER:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: ASSERT <condition>\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Succeeds or fails depending on <condition>; see HELP IF for <condition>s."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXFAIL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Always fails."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSUCC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Always succeeds."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_LOGIN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLOGOUT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If you haved logged in to Kermit as an Internet Kermit server, the LOGOUT\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
command, given at the prompt, logs you out and closes your session."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_LOGIN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRESET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Closes all open files and logs."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXASSOC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxassoc));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSHIFT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SHIFT [ n ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Shifts \\%1..9 variables n places to the left; default n = 1."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOPUSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXMAN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: MANUAL [ topic ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Runs the \"man\" command on the given topic (default \"kermit\")."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: MANUAL\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Accesses the Kermit 95 HTML manual using the current browser."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: MANUAL [ topic ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Runs the \"help\" command on the given topic (default \"kermit\")."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOPUSH */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXWILD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxwild));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPAT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxpat));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXFAST:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCAU:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXROB:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxfast));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKPURGE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPURGE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxpurge));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPURGE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxpurge));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKPURGE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRASG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RASG and RASSIGN are short forms of REMOTE ASSIGN."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRCWD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RCD and RCWD are short forms of REMOTE CD."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRCPY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RCOPY is a short form of REMOTE COPY."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRDEL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RDELETE is a short form of REMOTE RELETE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRDIR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RDIRECTORY is a short form of REMOTE DIRECTORY."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRXIT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" REXIT is a short form of REMOTE EXIT."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRHLP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RHELP is a short form of REMOTE HELP."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRHOS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RHOST is a short form of REMOTE HOST."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRKER:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RKERMIT is a short form of REMOTE KERMIT."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRMKD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RMKDIR is a short form of REMOTE MKDIR."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRMSG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RMESSAGE and RMSG are short forms of REMOTE MESSAGE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRPRI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RPRINT is a short form of REMOTE PRINT."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRPWD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RPWD is a short form of REMOTE PWD."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRQUE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" QUERY and RQUERY are short forms of REMOTE QUERY."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRREN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RRENAME is a short form of REMOTE RENAME."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRRMD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RRMDIR is a short form of REMOTE RMDIR."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRSET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RSET is a short form of REMOTE SET."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRSPA:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RSPACE is a short form of REMOTE SPACE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRTYP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RTYPE is a short form of REMOTE TYPE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXRWHO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" RWHO is a short form of REMOTE WHO."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSCRN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxscrn));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKEXEC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXEXEC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: EXEC <command> [ <arg1> [ <arg2> [ ... ] ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
C-Kermit overlays itself with the given system command and starts it with\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
the given arguments. Upon any error, control returns to C-Kermit."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKEXEC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXTRACE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: TRACE { /ON, /OFF } { ASSIGNMENTS, COMMAND-LEVEL, ALL }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Turns tracing of the given object on or off."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_PERMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCHMOD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxchmod));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_PERMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKROOT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCHRT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxchroot));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKROOT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXPROMP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxprompt));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXGREP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxgrep));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSEXP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSEXP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxsexp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSEXP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKLEARN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXLEARN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxlearn));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKLEARN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ANYSSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXSSH:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxssh));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ANYSSH */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TCPSOCKET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXFIREW:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxfirew));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TCPSOCKET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXUSER:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" Equivalent to FTP USER."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXACCT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" Equivalent to FTP ACCOUNT."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXORIE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" Shows the directories important to Kermit."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXCONT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" In a FOR or WHILE loop: continue the loop.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
At the prompt: continue a script that has \"shelled out\" to the prompt."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XXNOTAV:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(" This command is not configured in this version of Kermit."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
default: {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
char *s;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = cmdbuf + (int)strlen(cmdbuf) -1;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
while (s >= cmdbuf && *s == SP)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
*s-- = NUL;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
while (s >= cmdbuf && *s != SP)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s--;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
while (*s == SP) s++;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Sorry, help not available for \"%s\"\n",s);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
} /* switch */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHELP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(success = 0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* H M S G -- Get confirmation, then print the given message */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
hmsg(s) char *s; {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int x;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n%s\n\n",s);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NOHELP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int /* Print an array of lines, */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
hmsga(s) char *s[]; { /* cheap version. */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int i;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((i = cmcfm()) < 0) return(i);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n"); /* Start off with a blank line */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for (i = 0; *s[i]; i++) { /* Print each line. */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("%s\n",s[i]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* NOHELP not defined... */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int /* Print an array of lines, */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
hmsga(s) char *s[]; { /* pausing at end of each screen. */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
extern int hmtopline; /* (This should be a parameter...) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int x, y, i, j, k, n;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TTGWSIZ
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
ttgcwsz();
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Check whether window size changed */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (ttgwsiz() > 0) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (tt_rows > 0 && tt_cols > 0) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
cmd_rows = tt_rows;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
cmd_cols = tt_cols;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TTGWSIZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n"); /* Start off with a blank line */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = (hmtopline > 0) ? hmtopline : 1; /* Line counter */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for (i = 0; *s[i]; i++) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("%s\n",s[i]); /* Print a line. */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
y = (int)strlen(s[i]);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
k = 1;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for (j = 0; j < y; j++) /* See how many newlines were */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (s[i][j] == '\n') k++; /* in the string... */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n += k;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (n > (cmd_rows - 3) && *s[i+1]) /* After a screenful, give them */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!askmore()) return(0); /* a "more?" prompt. */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
else n = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXMIT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hsetxmit[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET TRANSMIT parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Controls the behavior of the TRANSMIT command (see HELP TRANSMIT):",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSMIT ECHO { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to echo text to your screen as it is being transmitted.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSMIT EOF text",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Text to send after end of file is reached, e.g. \\4 for Ctrl-D",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSMIT FILL number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of a character to insert into blank lines, 0 for none.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Applies only to text mode. 0 by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSMIT LINEFEED { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Transmit Linefeed as well as Carriage Return (CR) at the end of each line.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Normally, only CR is sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSMIT LOCKING-SHIFT { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to use SO/SI for transmitting 8-bit data when PARITY is not NONE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSMIT PAUSE number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" How many milliseconds to pause after transmitting each line (text mode),",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or each character (binary mode).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSMIT PROMPT number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of character to look for from host before sending next line",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when TRANSMITting in text mode; normally 10 (Linefeed). 0 means none;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" don't wait for a prompt.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSMIT TIMEOUT number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Number of seconds to wait for each character to echo when TRANSMIT ECHO",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is ON or TRANSMIT PROMPT is not 0. If 0 is specified, this means wait",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" indefinitely for each echo.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Synonym: SET XMIT. SHOW TRANSMIT displays current settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXMIT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hsetbkg[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET BACKGROUND { OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET BACKGROUND OFF forces prompts and messages to appear on your screen",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" even though Kermit thinks it is running in the background.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DYNAMIC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hsetbuf[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET BUFFERS n1 [ n2 ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Changes the overall amount of memory allocated for SEND and RECEIVE packet",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" buffers, respectively. Bigger numbers let you have longer packets and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" more window slots. If n2 is omitted, the same value as n1 is used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef BIGBUFOK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NOTE: This command is not needed in this version of Kermit, which is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" already configured for maximum-size packet buffers.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* BIGBUFOK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DYNAMIC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hsetcmd[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET COMMAND parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_AUTODL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND AUTODOWNLOAD { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enables/Disables automatic recognition of Kermit packets while in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command mode. ON by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_AUTODL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND BYTESIZE { 7, 8 }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Informs Kermit of the bytesize of the communication path between itself",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and your keyboard and screen. 8 is assumed. SET COMMAND BYTE 7 only if",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 8-bit characters cannot pass.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND COLOR <foreground-color> <background-color>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lets you choose colors for Command screen. Use ? in the color fields to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to get lists of available colors.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND CURSOR-POSITION <row> <column>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Moves the command-screen cursor to the given position (1-based). This",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command should be used in scripts instead of relying on ANSI.SYS escape",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" sequences.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND HEIGHT <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Changes the number of rows (lines) in your command screen, not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" counting the status line. Recommended values are 24, 42, and 49 (or 25,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 43, and 50 if SET COMMAND STATUSLINE is OFF.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND HEIGHT <number>"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Changes the number of rows (lines) in your command screen, not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" counting the status line. Windowed sessions can use any value from 8 to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 101. Fullscreen sessions are limited to 24, 42, 49, or 59. Not all"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" heights are supported by all video adapters.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND HEIGHT <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Informs Kermit of the number of rows in your command screen for the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" purposes of More?-prompting.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND WIDTH <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Informs Kermit of the number of characters across your screen for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" purposes of screen formatting.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND MORE-PROMPTING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON (the default) enables More?-prompting when Kermit needs to display",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" text that does not fit vertically on your screen. OFF allows the text to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" scroll by without intervention. If your command window has scroll bars,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" you might prefer OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_RECALL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND RECALL-BUFFER-SIZE number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" How big you want Kermit's command recall buffer to be. By default, it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" holds 10 commands. You can make it any size you like, subject to memory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" constraints of the computer. A size of 0 disables command recall.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whenever you give this command, previous command history is lost.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_RECALL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND QUOTING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to treat backslash and question mark as special characters (ON),",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or as ordinary data characters (OFF) in commands. ON by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DOUBLEQUOTING
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND DOUBLEQUOTING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to allow doublequotes (\") to be used to enclose fields,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" filenames, directory names, and macro arguments that might contain",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" spaces. ON by default; use OFF to force compatibility with older",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" versions.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DOUBLEQUOTING */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_RECALL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND RETRY { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to reprompt you with the correct but incomplete portion of a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" syntactically incorrect command. ON by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_RECALL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND SCROLLBACK <lines>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets size of virtual Command screen buffer to the given number of lines,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" which includes the active Command screen. The minimum is 256. The max",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is 2 million. The default is 512.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET COMMAND STATUSLINE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON (default) enables the Kermit status line in the command screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OFF removes it, making the line available for use by the host.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Use SHOW COMMAND to display these settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hsetcar[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET CARRIER-WATCH { AUTO, OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Attempts to control treatment of carrier (the Data Carrier Detect signal)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" on serial communication (SET LINE or SET PORT) devices. ON means that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" carrier is required at all times. OFF means carrier is never required.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTO (the default) means carrier is required at all times except during",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the DIAL command. Correct operation of carrier-watch depends on the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" capabilities of the underlying OS, drivers, devices, and cables. If you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" need to CONNECT to a serial device that is not asserting carrier, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit won't let you, use SET CARRIER-WATCH OFF. Use SHOW COMMUNICATIONS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to display the CARRIER-WATCH setting.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hsetat[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET ATTRIBUTES name ON or OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use this command to enable (ON) or disable (OFF) the transmission of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" selected file attributes along with each file, and to handle or ignore",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" selected incoming file attributes, including:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CHARACTER-SET: The transfer character set for text files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DATE: The file's creation date",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DISPOSITION: Unusual things to do with the file, like MAIL or PRINT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LENGTH: The file's length",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" PROTECTION: The file's protection (permissions)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SYSTEM-ID: Machine/Operating system of origin",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TYPE: The file's type (text or binary)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"You can also specify ALL to select all of them. Examples:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET ATTR DATE OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET ATTR LENGTH ON",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET ATTR ALL OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see HELP SET SEND and HELP SET RECEIVE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxytak[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET TAKE parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Controls behavior of TAKE command:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAKE ECHO { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether commands read from a TAKE file should be displayed on the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" screen (if so, each command is shown at the time it is read, and labeled",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with a line number).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TAKE ERROR { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether a TAKE command file should be automatically terminated when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a command fails. This setting is local to the current command file, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" inherited by subordinate command files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2MOUSE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxymouse[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET MOUSE ACTIVATE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enables or disables the mouse in Connect mode. Default is ON",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET MOUSE BUTTON <number> <key-modifier> <action> [ <text> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" where:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <number> is the mouse button number, 1, 2, or 3;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <key-modifier> denotes modifier keys held down during the mouse event:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ALT, ALT-SHIFT, CTRL, CTRL-ALT CTRL-ALT-SHIFT, CTRL-SHIFT, SHIFT, NONE;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <action> is the mouse action, CLICK, DRAG, or DOUBLE-CLICK.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The <text> has exactly the same properties as the <text> from the SET KEY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command -- it can be a character, a string, one or more Kverbs, a macro",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" invoked as a Kverb, or any combination of these. Thus, anything that can",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be assigned to a key can also be assigned to the mouse -- and vice versa.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If the <text> is omitted, the action will be ignored. Examples:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET MOUSE BUTTON 1 NONE DOUBLE \\KmouseCurPos",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET MOU B 2 SHIFT CLICK help\\13",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DRAG operations perform a \"mark mode\" selection of Text. You should",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" assign only the following actions to drag operations:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\Kdump - copy marked text to printer (or file)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\Kmarkcopyclip - copy marked text to PM Clipboard",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\Kmarkcopyhost - copy marked text direct to Host",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\Kmousemark - mark text, no copy operation performed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The following Kverb is only for use with the mouse:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \\KmouseCurPos",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" which represents the mouse-directed terminal cursor feature.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET MOUSE CLEAR",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Restores all mouse events to their default definitions",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 1 Ctrl-Click = Kverb: \\Kmouseurl",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 1 Double-Click = Kverb: \\Kmousecurpos",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 1 Drag = Kverb: \\Kmarkcopyclip",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 1 Alt-Drag = Kverb: \\Kmarkcopyclip_noeol",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 1 Ctrl-Drag = Kverb: \\Kmarkcopyhost",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 1 Ctrl-Alt-Drag = Kverb: \\Kmarkcopyhost_noeol",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 1 Ctrl-Shift-Drag = Kverb: \\Kdump",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 2 Double-Click = Kverb: \\Kpaste",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 2 Drag = Kverb: \\Kmarkcopyhost",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 2 Alt-Drag = Kverb: \\Kmarkcopyhost_noeol ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Button 3 Double-Click = Kverb: \\Kpaste",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2MOUSE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyterm[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET TERMINAL parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL TYPE { ANSI, VT52, VT100, VT102, VT220, VT320, ... }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects type type of terminal to emulate. Type SET TERMINAL TYPE ? to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" see a complete list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL ANSWERBACK { OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Disables/enables the ENQ/Answerback sequence (\"K-95 version term-type\").",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL ANSWERBACK MESSAGE <extension>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows you to specify an extension to the default answerback message.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL TYPE ...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command is not available because this version of Kermit does not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" include a terminal emulator. Instead, it is a \"semitransparent pipe\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (or a totally transparent one, if you configure it that way) to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" computer or service you have made a connection to. Your console,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" workstation window, or the terminal emulator or terminal from which you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are running Kermit provides the emulation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_APC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL APC { ON, OFF, NO-INPUT, NO-INPUT-UNCHECKED, UNCHECKED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Controls execution of Application Program Commands sent by the host while",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" K-95 is either in CONNECT mode or processing INPUT commands. ON allows",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" execution of \"safe\" commands and disallows potentially dangerous ones",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" such as DELETE, RENAME, OUTPUT, and RUN. OFF prevents execution of APCs.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UNCHECKED allows execution of all APCs. OFF is the default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Controls execution of Application Program Commands sent by the host while",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C-Kermit is in CONNECT mode. ON allows execution of \"safe\" commands and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" disallows potentially dangerous commands such as DELETE, RENAME, OUTPUT,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and RUN. OFF prevents execution of APCs. UNCHECKED allows execution of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" all APCs. OFF is the default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_APC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL ARROW-KEYS { APPLICATION, CURSOR }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets the mode for the arrow keys during VT terminal emulation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL ATTRIBUTE { BLINK, DIM, PROTECTED, REVERSE, UNDERLINE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines how attributes are displayed by Kermit-95.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL ATTRIBUTE { BLINK, DIM, REVERSE, UNDERLINE } { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether real Blinking, Dim, Reverse, and Underline are used in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the terminal display. When BLINK is turned OFF, reverse background",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" intensity is used. When DIM is turned OFF, dim characters appear BOLD.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When REVERSE and UNDERLINE are OFF, the colors selected with SET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TERMINAL COLOR { REVERSE,UNDERLINE } are used instead. This command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" affects the entire current screen and terminal scrollback buffer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL ATTRIBUTE PROTECTED [ -",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" { BOLD, DIM, INVISIBLE, NORMAL, REVERSE, UNDERLINED } ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets the attributes used to represent Protected text in Wyse and Televideo",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" terminal emulations. Any combination of attributes may be used. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default is DIM.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_XYZ
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL AUTODOWNLOAD { ON, OFF, ERROR { STOP, CONTINUE } }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" enables/disables automatic switching into file-transfer mode when a Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or ZMODEM file transfer has been detected during CONNECT mode or while",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" an INPUT command is active. Default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL AUTODOWNLOAD { ON, OFF, ERROR { STOP, CONTINUE } }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" enables/disables automatic switching into file-transfer mode when a Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" file transfer has been detected during CONNECT mode or while an INPUT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" command is active. Default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_XYZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When TERMINAL AUTODOWNLOAD is ON, the TERMINAL AUTODOWNLOAD ERROR setting",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" tells what to do if an error occurs during a file transfer or other",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" protocol operation initiated by the terminal emulator: STOP (the default)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" means to remain in command mode so you can see what happened; CONTINUE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" means to resume the CONNECT session (e.g. so a far-end script can continue",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" its work).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_XYZ
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERM... AUTO... { KERMIT, ZMODEM } C0-CONFLICTS { IGNORED, PROCESSED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether the active terminal emulator should process or ignore",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C0 control characters which are also used for the specified file transfer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" protocol. Kermit by default uses ^A (SOH) and Zmodem uses ^X (CAN).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is PROCESSED.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERM... AUTO... { KERMIT, ZMODEM } DETECTION-METHOD { PACKET, STRING }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether the specified file transfer protocol should be detected",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by looking for valid packets or by identifying a specified text string.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is PACKET.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERM... AUTO... { KERMIT, ZMODEM } STRING <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lets you assign an autodownload detection string for use with the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specified file transfer protocol.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default for Kermit is \"READY TO SEND...\", for Zmodem is \"rz\\{13}\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* CK_XYZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERM... AUTO... KERMIT C0-CONFLICTS { IGNORED, PROCESSED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether the active terminal emulator should process or ignore",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C0 control characters which are also used for the specified file transfer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" protocol. Kermit by default uses ^A <SOH>. Default is PROCESSED.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERM... AUTO... KERMIT DETECTION-METHOD { PACKET, STRING }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether the specified file transfer protocol should be detected",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by looking for valid packets or by identifying a specified text string.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is PACKET.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERM... AUTO... KERMIT STRING <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lets you assign an autodownload detection string for use with the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specified file transfer protocol. Default is \"READY TO SEND...\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_XYZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL AUTOPAGE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL AUTOSCROLL { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL AUTODOWNLOAD { ON, OFF, ERROR { STOP, CONTINUE } }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enables/disables automatic switching into file-transfer mode when a valid",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_XYZ
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit or ZMODEM packet of the appropriate type is received during CONNECT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" mode. Default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit packet of the appropriate type is received during CONNECT mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_XYZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When TERMINAL AUTODOWNLOAD is ON, the TERMINAL AUTODOWNLOAD ERROR setting",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" tells what to do if an error occurs during a file transfer or other",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" protocol operation initiated by the terminal emulator: STOP (the default)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" means to remain in command mode so you can see what happened; CONTINUE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" means to resume the CONNECT session (e.g. so a far-end script can continue",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" its work).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL BELL { AUDIBLE, VISIBLE, NONE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies how Control-G (bell) characters are handled. AUDIBLE means",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a beep is sounded; VISIBLE means the screen is flashed momentarily.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (This command has been superseded by SET BELL.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL BYTESIZE { 7, 8 }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use 7- or 8-bit characters between Kermit and the remote computer during",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" terminal sessions. The default is 8.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL CHARACTER-SET <remote-cs>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the character set used by the remote host, <remote-cs>.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Equivalent to SET TERM REMOTE-CHARACTER-SET <remote-cs> ALL. For more",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" control over the details, use SET TERM REMOTE-CHARACTER-SET and (in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" non-GUI K95 versions) SET TERM LOCAL-CHARACTER-SET; these are explained",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" below. The default TERMINAL CHARACTER-SET is LATIN1 (ISO 8859-1).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* not OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL CHARACTER-SET <remote-cs> [ <local-cs> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the character set used by the remote host, <remote-cs>, and the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" character set used by C-Kermit locally, <local-cs>. If you don't specify",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the local character set, the current FILE CHARACTER-SET is used. When",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" you specify two different character sets, C-Kermit translates between them",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" during CONNECT. By default, both character sets are TRANSPARENT, and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" no translation is done.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL CODE-PAGE <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Lets you change the PC code page. Only works for code pages that are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" successfully prepared in CONFIG.SYS. Use SHOW TERMINAL to list the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current code page and the available code pages.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2ONLY
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also see SET TERMINAL FONT if the desired code page in not available in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" your version of OS/2.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2ONLY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL COLOR BORDER <foreground>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL COLOR <screenpart> <foreground> <background>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets the colors of the terminal emulation screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <screenpart> may be any of the following:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DEBUG, HELP-TEXT, REVERSE, SELECTION, STATUS-LINE, TERMINAL-SCREEN, or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UNDERLINED-TEXT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <foreground> and <background> may be any of:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" BLACK, BLUE, GREEN, CYAN, RED, MAGENTA, BROWN, LGRAY, DGRAY, LBLUE,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LGREEN, LCYAN, LRED, LMAGENTA, YELLOW or WHITE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The L prefix for the color names means Light.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL COLOR ERASE { CURRENT-COLOR, DEFAULT-COLOR }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether the current color as set by the host or the default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" color as set by the user (SET TERMINAL COLOR TERMINAL) is used to clear",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the screen when erase commands are received from the host.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL COLOR RESET-ON-ESC[0m { CURRENT-COLOR, DEFAULT-COLOR }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether the current color or the default color is used after",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" <ESC>[0m (\"reset attributes\") command sequence is received from the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" host.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL CONTROLS { 7, 8 }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether VT220/320 or Wyse 370 function keys, arrow keys, etc,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that generate ANSI-format escape sequences should send 8-bit control",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" characters or 7-bit escape sequences.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL CR-DISPLAY { CRLF, NORMAL }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies how incoming carriage return characters are to be displayed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" on your screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL CURSOR { FULL, HALF, UNDERLINE } {ON, OFF, NOBLINK}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects the cursor style and visibility for the terminal screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL CURSOR { FULL, HALF, UNDERLINE } {ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects the cursor style and visibility for the terminal screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL DEBUG { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Turns terminal session debugging on and off. When ON, incoming control",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" characters are displayed symbolically, rather than be taken as formatting",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" commands. SET TERMINAL DEBUG ON implies SET TELNET DEBUG ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL DG-UNIX-MODE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether the Data General emulations should accept control",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" sequences in Unix compatible format or in native DG format. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default is OFF, DG format.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL ECHO { LOCAL, REMOTE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies which side does the echoing during terminal connection.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL ESCAPE-CHARACTER { ENABLED, DISABLED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Turns on/off the ability to escape back from CONNECT mode using the SET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ESCAPE character. If you disable it you can still get back using Alt-key",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" combinations as shown in the status line. Also see HELP SET ESCAPE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ESCAPE character. If you disable it, Kermit returns to its prompt only",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when the connection is closed by the other end. USE WITH EXTREME CAUTION.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also see HELP SET ESCAPE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL FONT <facename> <height>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the font to be used in the Kermit 95 window. The font is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" determined by the choice of a facename and a height measured in Points.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The available facenames are those installed in the Font Control Panel.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2ONLY
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL FONT { CP437, CP850, CP852, CP862, CP866, DEFAULT }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CP437 - Original PC code page",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CP850 - \"Multilingual\" (West Europe) code page",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CP852 - East Europe Roman Alphabet code page (for Czech, Polish, etc)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CP862 - Hebrew code page",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CP866 - Cyrillic (Russian, Belorussian, and Ukrainian) code page",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Loads a soft into the video adapter for use during terminal emulation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use this command when your OS/2 system does not have the desired code.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" page. Can be used only in full-screen sessions. Also see SET TERMINAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CODE-PAGE and SET TERMINAL REMOTE-CHARACTER-SET.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2ONLY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL HEIGHT <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Changes the number of rows (lines) to use during terminal emulation, not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" counting the status line. Recommended values are 24, 42, and 49 (or 25,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 43, and 50 if SET TERMINAL STATUSLINE is OFF.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL HEIGHT <number>"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Changes the number of rows (lines) to use during terminal emulation, not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" counting the status line. Windowed sessions can use any value from 8 to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 101. Fullscreen sessions are limited to 24, 42, 49, or 59. Not all"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" heights are supported by all video adapters.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL HEIGHT <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells C-Kermit how many rows (lines) are on your CONNECT-mode screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKTIDLE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL IDLE-TIMEOUT <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets the limit on idle time in CONNECT mode to the given number of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" seconds. 0 (the default) means no limit.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL IDLE-ACTION { EXIT, HANGUP, OUTPUT [ text ], RETURN }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the action to be taken when a CONNECT session is idle for the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" number of seconds given by SET TERMINAL IDLE-TIMEOUT. The default action",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is to RETURN to command mode. EXIT exits from Kermit; HANGUP hangs up the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" connection, and OUTPUT sends the given text to the host without leaving",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CONNECT mode; if no text is given a NUL (0) character is sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TNCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL IDLE-ACTION { TELNET-NOP, TELNET-AYT }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For TELNET connections only: Sends the indicated Telnet protocol message:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" No Operation (NOP) or \"Are You There?\" (AYT).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TNCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKTIDLE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL KDB-FOLLOWS-GL/GR { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether or not the keyboard character set should follow the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" active GL and GR character sets. This feature is OFF by default and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" should not be used unless it is specificly required by the host",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" application.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL KEY <mode> /LITERAL <keycode> <text>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL KEY <mode> DEFAULT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL KEY <mode> CLEAR",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Configures the key whose <keycode> is given to send the given text when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" pressed while <mode> is active. <mode> may be any of the valid terminal",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" types or the special modes \"EMACS\", \"HEBREW\" or \"RUSSIAN\". DEFAULT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" restores all default key mappings for the specified mode. CLEAR erases",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" all the key mappings. If there is no text, the default key binding is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" restored for the key k. SET TERMINAL KEY mappings take place before",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" terminal character-set translation. SET KEY mappings take precedence over",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET TERMINAL KEY <terminal type> settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" restored for the key. SET KEY mappings take precedence over SET TERMINAL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KEY <terminal type> settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The /LITERAL switch may be used to instruct Kermit to ignore character-set",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" translations when sending this definition to the host.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The text may contain \"\\Kverbs\" to denote actions, to stand for DEC",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" keypad, function, or editing keys, etc. For a list of available keyboard",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" verbs, type SHOW KVERBS.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" To find out the keycode and mapping for a particular key, use the SHOW",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KEY command. Use the SAVE KEYS command to save all settings to a file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL KEYBOARD-MODE { NORMAL, EMACS, RUSSIAN, HEBREW }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Select a special keyboard mode for use in the terminal screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL KEYPAD-MODE { APPLICATION, NUMERIC }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the \"mode\" of the numeric keypad for VT terminal emulation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use this command in case the host or application wants the keypad to be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in a different mode than it's in, but did not send the escape sequence",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to put it in the needed mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL LF-DISPLAY { CRLF, NORMAL }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies how incoming linefeed characters are to be displayed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" on your screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL LINE-SPACING <float>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the line spacing used when displaying text. The default is 1.0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Valid values range from 1.0 to 3.0 inclusive.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL LOCAL-CHARACTER-SET <local-cs>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the character set used by K-95 locally. If you don't specify",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2ONLY
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the local character-set, the current TERMINAL FONT is used if you have",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" given a SET TERMINAL FONT command; otherwise the current codepage is used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the local character-set, the current code page is used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2ONLY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When the local and remote character sets differ, Kermit translates between",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" them during CONNECT. By default, the remote character set is Latin1 and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the local one is your current code page.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" In Windows NT, Unicode is used as the local character-set regardless of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" this setting.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"See also SET TERMINAL REMOTE-CHARACTER-SET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL LOCKING-SHIFT { OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether to send Shift-In/Shift-Out (Ctrl-O and Ctrl-N) to switch",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" between 7-bit and 8-bit characters sent during terminal emulation over",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 7-bit connections. OFF by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL LOCKING-SHIFT { OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit whether to use Shift-In/Shift-Out (Ctrl-O and Ctrl-N) to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" switch between 7-bit and 8-bit characters during CONNECT. OFF by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL MARGIN-BELL { ON [column], OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether the margin-bell is activated and what column it should",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ring at. OFF by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL NEWLINE-MODE { OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether to send CRLF (Carriage Return and Line Feed) when you type",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CR (press the Return or Enter key) in CONNECT mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL OUTPUT-PACING <milliseconds>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells how long to pause between sending each character to the host during",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CONNECT mode. Normally not needed but sometimes required to work around",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TRANSMISSION BLOCKED conditions when pasting into the terminal window.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef PCTERM
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL PCTERM { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Activates or deactivates the PCTERM terminal emulation keyboard mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When PCTERM is ON all keystrokes in the terminal screen are sent to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" host as make/break (down/up) codes instead of as characters from the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" REMOTE-CHARACTER-SET, and all keyboard mappings, including Kverbs and the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" escape character are disabled. To turn off PCTERM keyboard mode while in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CONNECT mode press Control-CapsLock. PCTERM is OFF by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* PCTERM */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL PRINT { AUTO, COPY, OFF, USER }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows selective control of various types of printing from the Terminal",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" session. AUTO prints a line of text from the terminal screen whenever",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the cursor is moved off the line. COPY prints every byte received as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it is received without interpretation. USER prints every byte after",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" interpretation by the terminal emulator translates character-sets and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" construct escape sequences, ... The default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef XPRINT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL PRINT { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enables and disables host-initiated transparent printing in CONNECT mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* XPRINT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL REMOTE-CHARACTER-SET <remote-cs> [ { G0,G1,G2,G3 }... ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the character set used by the remote host, <remote-cs>.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When the local and remote character sets differ, Kermit translates",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" between them during CONNECT. By default, the remote character set is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Latin1 and the local one is your current code page. Optionally, you can",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" also designate the character set to the G0..G3 graphic tables.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL ROLL-MODE { INSERT, OVERWRITE, KEYSTROKES [ option ] }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether new data when received from the host is entered into the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" scrollback buffer at the current rollback position (OVERWRITE) or at the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" end of the buffer (INSERT). The default is INSERT. Typing is allowed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" during rollbacks in either mode, according to SET TERM ROLL KEYSTROKES:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SEND (the default) means to process keystrokes normally; IGNORE means to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ignore them when the screen is scrolled back; RESTORE-AND-SEND is like",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SEND but restores the screen to its active position first.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SCREEN-MODE { NORMAL, REVERSE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When set to REVERSE the foreground and background colors are swapped as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" well as the application of the foreground and background intensity bits.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default is NORMAL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SCREEN-OPTIMIZE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When set to ON, the default, Kermit only paints the screen with characters",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that have changed since the last screen paint. When OFF, the screen is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" completely repainted each time there is a change.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SCREEN-UPDATE { FAST, SMOOTH } [ <milliseconds> ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Chooses the mechanism used for screen updating and the update frequency.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Defaults are FAST scrolling with updates every 100 milliseconds.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SCROLLBACK <lines>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets size of CONNECT virtual screen buffer. <lines> includes the active",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" terminal screen. The minimum is 256. The maximum is 2 million. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default is 2000.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SEND-DATA { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether ASCII emulations such as WYSE 30,50,60 or TVI 910+,925,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 950 may send their screen contents to the host upon request. Allowing the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" screen to be read by the host is a significant security risk. The default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is OFF and should only be changed after a security evaluation of host",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" environment.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SEND-END-OF-BLOCK { CRLF_ETX, US_CR }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines which set of characters should be used as end of line and end",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of transmission indicators when sending screen data to the host",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SGR-COLORS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON (default) means allow host control of colors; OFF means ignore host",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" escape sequences to set color.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SNI-CH.CODE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command controls the state of the CH.CODE key. It is the equivalent",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to the SNI_CH_CODE Keyboard verb. The SNI terminal uses CH.CODE to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" easily switch between the National Language character set and U.S. ASCII.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default is ON which means to display characters as U.S. ASCII. When",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OFF the lanuage specified by SET TERMINAL SNI-LANUAGE is used to display",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" characters when 7-bit character sets are in use."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SNI-FIRMWARE-VERSIONS <kbd-version> <terminal-version>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the Firmware Version number that should be reported to the host",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when the terminal is queried. The default is 920031 for the keyboard",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and 830851 for the terminal.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SNI-LANGUAGE <national-language>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" An alias for SET TERMINAL VT-LANUAGE, this command specifies the national",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" language character-set that should be used when the NRC mode is activated",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for VT emulations or when CH.CODE is OFF for SNI emulations. The default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" language for SET TERMINAL TYPE SNI-97801 is \"German\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SNI-PAGEMODE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether or not page mode is active. OFF by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL SNI-SCROLLMODE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether or not scroll mode is active. OFF by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL STATUSLINE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON (default) enables the Kermit status line in the terminal screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OFF removes it, making the line available for use by the host.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL TRANSMIT-TIMEOUT <seconds>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the maximum amount of time K-95 waits before returning to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" prompt if your keystrokes can't be transmitted for some reason, such as a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" flow-control deadlock.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TRIGGER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL TRIGGER <string>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a string that, when detected during any subsequent CONNECT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" session, is to cause automatic return to command mode. Give this command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" without a string to cancel the current trigger. See HELP CONNECT for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" additional information.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TRIGGER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL URL-HIGHLIGHT { ON <attribute>, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether K-95 should highlight URLs and which screen attribute",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" should be used. The screen attributes can be one of NORMAL, BLINK, BOLD,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DIM, INVISIBLE, REVERSE, or UNDERLINE. The default is ON using the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" BOLD screen attribute.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL VIDEO-CHANGE { DISABLED, ENABLED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether K-95 should change video modes automatically in response",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to escape sequences from the other computer. ENABLED by default (except",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" on Windows 95).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to escape sequences from the other computer. ENABLED by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL VT-LANGUAGE <language>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the National Replacement Character Set (NRC) to be used when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NRC mode is activated. The default is \"North American\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL VT-NRC-MODE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OFF (default) chooses VT multinational Character Set mode. OFF chooses",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" VT National Replacement Character-set mode. The NRC is selected with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET TERMINAL VT-LANGUAGE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL WIDTH <cols>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells the number of columns in the terminal screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default is 80. You can also use 132. Other widths can be chosen but",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are usually not supported by host software.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL WIDTH <cols>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells how many columns define the terminal size.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Default is 80. In Windowed OS/2 2.x sessions, this value may not be changed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"In Windowed OS/2 WARP 3.x sessions, this value may range from 20 to 255.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"In Full screen sessions, values of 40, 80, and 132 are valid. Not all",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"combinations of height and width are supported on all adapters.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL WRAP { OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether the terminal emulator should automatically wrap long lines",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" on your screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TERMINAL WIDTH <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Tells Kermit how many columns (characters) are on your CONNECT-mode screen.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Type SHOW TERMINAL to see current terminal settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NETCONN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyhost[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET HOST [ switches ] hostname-or-address [ service ] [ protocol-switch ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Establishes a connection to the specified network host on the currently",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" selected network type. For TCP/IP connections, the default service is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TELNET; specify a different TCP port number or service name to choose a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" different service. The first set of switches can be:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NETWORK-TYPE:name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Makes the connection on the given type of network. Equivalent to SET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NETWORK TYPE name prior to SET HOST, except that the selected network",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" type is used only for this connection. Type \"set host /net:?\" to see",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NETCMD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a list. /NETWORK-TYPE:COMMAND means to make the connection through the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" given system command, such as \"rlogin\" or \"cu\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NETCMD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /CONNECT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Enter CONNECT (terminal) mode automatically if the connection is successful.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SERVER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enter server mode automatically if the connection is successful.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /USERID:[<name>]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This switch is equivalent to SET LOGIN USERID <name> or SET TELNET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ENVIRONMENT USER <name>. If a string is given, it sent to host during",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Telnet negotiations; if this switch is given but the string is omitted,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" no user ID is sent to the host. If this switch is not given, your",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current USERID value, \\v(userid), is sent. When a userid is sent to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" host it is a request to login as the specified user.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_AUTHENTICATION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /PASSWORD:[<string>]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This switch is equivalent to SET LOGIN PASSWORD. If a string is given,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it is treated as the password to be used (if required) by any Telnet",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Authentication protocol (Kerberos Ticket retrieval, Secure Remote",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Password, or X.509 certificate private key decryption.) If no password",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" switch is specified a prompt is issued to request the password if one",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is required for the negotiated authentication method.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_AUTHENTICATION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The protocol-switches can be:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NO-TELNET-INIT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Do not send initial Telnet negotiations even if this is a Telnet port.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /RAW-SOCKET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This is a connection to a raw TCP socket.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RLOGCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /RLOGIN",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use Rlogin protocol even if this is not an Rlogin port.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RLOGCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TELNET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Send initial Telnet negotiations even if this is not a Telnet port.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_KERBEROS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RLOGCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KRB4
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /K4LOGIN",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use Kerberos IV klogin protocol even if this is not a klogin port.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_ENCRYPTION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /EK4LOGIN",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use Kerberos IV Encrypted login protocol even if this is not an eklogin",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" port.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_ENCRYPTION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KRB4 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KRB5
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /K5LOGIN",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use Kerberos V klogin protocol even if this is not a klogin port.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_ENCRYPTION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /EK5LOGIN",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use Kerberos V Encrypted login protocol even if this is not an eklogin",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" port.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_ENCRYPTION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KRB5 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RLOGCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_KERBEROS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SSL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SSL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Perform SSL negotiations.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SSL-TELNET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Perform SSL negotiations and if successful start Telnet negotiations.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TLS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Perform TLS negotiations.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /TLS-TELNET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Perform TLS negotiations and if successful start Telnet negotiations.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SSL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Examples:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST kermit.columbia.edu",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST /CONNECT kermit.columbia.edu",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST * 1649",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST /SERVER * 1649",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST 128.59.39.2",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST madlab.sprl.umich.edu 3000",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST xyzcorp.com 2000 /RAW-SOCKET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SSHBUILTIN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST /NET:SSH kermit.columbia.edu /x11-forwarding:on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SSHBUILTIN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NETCMD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST /CONNECT /COMMAND rlogin xyzcorp.com",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NETCMD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SUPERLAT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Notes:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . The TELNET command is equivalent to SET NETWORK TYPE TCP/IP,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST name [ port ] /TELNET, IF SUCCESS CONNECT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" . For SUPERLAT connections, the hostname-or-address may be either a service",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name, or a node/port combination, as required by your LAT host.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The TELNET command is equivalent to SET NETWORK TYPE TCP/IP,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET HOST name [ port ] /TELNET, IF SUCCESS CONNECT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SUPERLAT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see SET NETWORK, TELNET, SET TELNET.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxyauth[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Synatx: SET AUTHENTICATION <auth_type> <parameter> <value>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Sets defaults for the AUTHENTICATE command:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_KERBEROS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION KERBEROS5 ADDRESSES {list of ip-addresses}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a list of IP addresses that should be placed in the Ticket",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Getting Ticket in addition to the local machine addresses.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { KERBEROS4, KERBEROS5 } AUTODESTROY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" { ON-CLOSE, ON-EXIT, NEVER }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When ON, Kermit will destroy all credentials in the default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" credentials cache upon Kermit termination. Default is NEVER.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { KERBEROS4, KERBEROS5 } AUTOGET { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When ON, if the host offers Kerberos 4 or Kerberos 5 authentication",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and Kermit is configured to use that authentication method and there",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is no TGT, Kermit will automatically attempt to retrieve one by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" prompting for the password (and principal if needed.) Default is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION KERBEROS5 CREDENTIALS-CACHE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows an alternative credentials cache to be specified. This is useful",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when you need to maintain two or more sets of credentials for different",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" realms or roles. The default is specified by the environment variable",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KRB5CCNAME or as reported by the Kerberos 5 library.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION KERBEROS5 FORWARDABLE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When ON, specifies that Kerberos 5 credentials should be forwardable to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the host. If SET TELNET AUTHENTICATION FORWARDING is ON, forwardable",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" credentials are sent to the host. The default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION KERBEROS5 GET-K4-TGT { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When ON, specifies that Kerberos 4 credentials should be requested each",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" time Kerberos 5 credentials are requested with AUTH KERBEROS5 INIT.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION KERBEROS4 INSTANCE <instance>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows a Kerberos 4 instance to be specified as a default (if needed).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { KERBEROS4, KERBEROS5 } KEYTAB <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the location of the keytab file used to authenticate incoming",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" connections. The default is none, which means to use the default value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" configured in the Kerberos installation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { KERBEROS4, KERBEROS5 } LIFETIME <minutes>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the lifetime of the TGTs requested from the KDC. The default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is 600 minutes (10 hours).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION KERBEROS5 NO-ADDRESSES { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether or not IP addresses will be inserted into the TGT."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION KERBEROS4 PREAUTH { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Allows Kerberos 4 preauthenticated TGT requests to be turned off. The",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default is ON. Only use if absolutely necessary. We recommend that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" preauthenticated requests be required for all tickets returned by a KDC",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to a requestor.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { KERBEROS4, KERBEROS5 } PRINCIPAL <name>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When Kermit starts, it attempts to set the principal name to that stored",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in the current credentials cache. If no credential cache exists, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" current SET LOGIN USERID value is used. SET LOGIN USERID is set to the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" operating system's current username when Kermit is started. To force",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit to prompt the user for the principal name when requesting TGTs,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" place:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET AUTH K4 PRINCIPAL {}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET AUTH K5 PRINCIPAL {}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in the Kermit initialization file or connection script.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { KERBEROS4, KERBEROS5 } PROMPT PASSWORD <prompt>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a custom prompt to be used when prompting for a password.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The Kerberos prompt strings may contain two %s replacement fields.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The first %s is replaced by the principal name; the second by the realm.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { KERBEROS4, KERBEROS5 } PROMPT PRINCIPAL <prompt>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a custom prompt to be used when prompting for the Kerberos",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" principal name. No %s replacement fields may be used. Kermit prompts",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for a principal name when retrieving a TGT if the command:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET AUTHENTICATION { KERBEROS4, KERBEROS5 } PRINCIPAL {}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" has been issued.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION KERBEROS5 PROXIABLE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When ON, specifies that Kerberos 5 credentials should be proxiable.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION KERBEROS5 RENEWABLE <minutes>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When <minutes> is greater than the ticket lifetime a TGT may be renewed",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with AUTH K5 INIT /RENEW instead of getting a new ticket as long as the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ticket is not expired and its within the renewable lifetime. Default is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" 0 (zero) minutes.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { KERBEROS4, KERBEROS5 } REALM <name>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If no default is set, the default realm configured for the Kerberos",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" libraries is used. Abbreviations accepted.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { KERBEROS4, KERBEROS5 } SERVICE-NAME <name>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command specifies the service ticket name used to authenticate",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to the host when Kermit is used as a client; or the service ticket",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name accepted by Kermit when it is acting as the host.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If no default is set, the default service name for Kerberos 4 is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"rcmd\" and for Kerberos 5 is \"host\".",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_KERBEROS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SRP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION SRP PROMPT PASSWORD <prompt>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a custom prompt to be used when prompting for a password.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The SRP prompt string may contain one %s replacement fields which is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" replaced by the login userid.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SRP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SSL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"In all of the following commands \"SSL\" and \"TLS\" are aliases.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } CIPHER-LIST <list of ciphers>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Applies to both SSL and TLS. A colon separated list of any of the following",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"(case sensitive) options depending on the options chosen when OpenSSL was ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"compiled: ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Key Exchange Algorithms:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"kRSA\" RSA key exchange",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"kDHr\" Diffie-Hellman key exchange (key from RSA cert)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"kDHd\" Diffie-Hellman key exchange (key from DSA cert)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"kEDH\" Ephemeral Diffie-Hellman key exchange (temporary key)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"kKRB5\" Kerberos 5",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Authentication Algorithm:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"aNULL\" No authentication",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"aRSA\" RSA authentication",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"aDSS\" DSS authentication",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"aDH\" Diffie-Hellman authentication",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"aKRB5\" Kerberos 5",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Cipher Encoding Algorithm:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"eNULL\" No encodiing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"DES\" DES encoding",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"3DES\" Triple DES encoding",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"RC4\" RC4 encoding",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"RC2\" RC2 encoding",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"IDEA\" IDEA encoding",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" MAC Digest Algorithm:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"MD5\" MD5 hash function",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"SHA1\" SHA1 hash function",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"SHA\" SHA hash function (should not be used)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Aliases:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"SSLv2\" all SSL version 2.0 ciphers (should not be used)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"SSLv3\" all SSL version 3.0 ciphers",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"EXP\" all export ciphers (40-bit)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"EXPORT56\" all export ciphers (56-bit)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"LOW\" all low strength ciphers (no export)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"MEDIUM\" all ciphers with 128-bit encryption",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"HIGH\" all ciphers using greater than 128-bit encryption",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"RSA\" all ciphers using RSA key exchange",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"DH\" all ciphers using Diffie-Hellman key exchange",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"EDH\" all ciphers using Ephemeral Diffie-Hellman key exchange",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"ADH\" all ciphers using Anonymous Diffie-Hellman key exchange",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"DSS\" all ciphers using DSS authentication",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"KRB5\" all ciphers using Kerberos 5 authentication",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"NULL\" all ciphers using no encryption",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Each item in the list may include a prefix modifier:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"+\" move cipher(s) to the current location in the list",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"-\" remove cipher(s) from the list (may be added again by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a subsequent list entry)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"!\" kill cipher from the list (it may not be added again",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by a subsequent list entry)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If no modifier is specified the entry is added to the list at the current ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"position. \"+\" may also be used to combine tags to specify entries such as "
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\"RSA+RC4\" describes all ciphers that use both RSA and RC4.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"For example, all available ciphers not including ADH key exchange:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"All algorithms including ADH and export but excluding patented algorithms: ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HIGH:MEDIUM:LOW:EXPORT56:EXP:ADH:!kRSA:!aRSA:!RC4:!RC2:!IDEA",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The OpenSSL command ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" openssl.exe ciphers -v <list of ciphers> ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"may be used to list all of the ciphers and the order described by a specific",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"<list of ciphers>.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } CRL-DIR <directory>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"specifies a directory that contains certificate revocation files where each",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"file is named by the hash of the certificate that has been revoked.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OpenSSL expects the hash symlinks to be made like this:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ln -s crl.pem `openssl crl -hash -noout -in crl.pem`.r0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Since not all file systems have symlinks you can use the following command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in Kermit to copy the crl.pem file to the hash file name.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" copy crl.pem {\\fcommand(openssl.exe crl -hash -noout -in crl.pem).r0}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This produces a hash based on the issuer field in the CRL such ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that the issuer field of a Cert may be quickly mapped to the ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" correct CRL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } CRL-FILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"specifies a file that contains a list of certificate revocations.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } DEBUG { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"specifies whether debug information should be displayed about the SSL/TLS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"connection. When DEBUG is ON, the VERIFY command does not terminate",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"connections when set to FAIL-IF-NO-PEER-CERT when a certificate is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"presented that cannot be successfully verified. Instead each error",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"is displayed but the connection automatically continues.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } DH-PARAM-FILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a file containing DH parameters which are used to generate",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" temporary DH keys. If a DH parameter file is not provided Kermit uses a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" fixed set of parameters depending on the negotiated key length. Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" provides DH parameters for key lengths of 512, 768, 1024, 1536, and 2048",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" bits.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } DSA-CERT-CHAIN-FILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a file containing a DSA certificate chain to be sent along with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the DSA-CERT to the peer. This file must only be specified if Kermit is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" being used as a server and the DSA certificate was signed by an",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" intermediary certificate authority.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } DSA-CERT-FILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a file containing a DSA certificate to be sent to the peer to ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" authenticate the host or end user. The file may contain the matching DH ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" private key instead of using the DSA-KEY-FILE command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } DSA-KEY-FILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Specifies a file containing the private DH key that matches the DSA ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"certificate specified with DSA-CERT-FILE. This command is only necessary if",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the private key is not appended to the certificate in the file specified by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"DSA-CERT-FILE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Note: When executing a script in the background or when it is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" running as an Internet Kermit Service Daemon, Kermit cannot support ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" encrypted private keys. When attempting to load a private key that is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" encrypted, a prompt will be generated requesting the passphrase necessary",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to decrypt the keyfile. To automate access to the private key you must",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" decrypt the encrypted keyfile and create an unencrypted keyfile for use",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by Kermit. This can be accomplished by using the following command and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the passphrase:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" openssl dsa -in <encrypted-key-file> -out <unencrypted-key-file>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } RANDOM-FILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a file containing random data to be used as seed for the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Pseudo Random Number Generator. The contents of the file are",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" overwritten with new random data on each use.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } RSA-CERT-CHAIN-FILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a file containing a RSA certificate chain to be sent along with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the RSA-CERT to the peer. This file must only be specified if Kermit is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" being used as a server and the RSA certificate was signed by an",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" intermediary certificate authority.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } RSA-CERT-FILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a file containing a RSA certificate to be sent to the peer to ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" authenticate the host or end user. The file may contain the matching RSA ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" private key instead of using the RSA-KEY-FILE command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } RSA-KEY-FILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a file containing the private RSA key that matches the RSA",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" certificate specified with RSA-CERT-FILE. This command is only necessary",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" if the private key is not appended to the certificate in the file specified"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by RSA-CERT-FILE. ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Note: When executing a script in the background or when it is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" running as an Internet Kermit Service Daemon, Kermit cannot support ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" encrypted private keys. When attempting to load a private key that is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" encrypted, a prompt will be generated requesting the passphrase necessary",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to decrypt the keyfile. To automate access to the private key you must",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" decrypt the encrypted keyfile and create an unencrypted keyfile for use",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by Kermit. This can be accomplished by using the following command and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the passphrase:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" openssl rsa -in <encrypted-key-file> -out <unencrypted-key-file>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } VERBOSE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether information about the authentication (ie, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" certificate chain) should be displayed upon making a connection.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } VERIFY { NO,PEER-CERT,FAIL-IF-NO-PEER-CERT }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies whether certificates should be requested from the peer verified;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" whether they should be verified when they are presented; and whether they",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" should be required. When set to NO (the default for IKSD), Kermit does",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" not request that the peer send a certificate; if one is presented it is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ignored. When set to PEER-CERT (the default when not IKSD), Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" requests a certificate be sent by the peer. If presented, the certificate",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is verified. Any errors during the verification process result in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" queries to the end user. When set to FAIL-IF-NO-PEER-CERT, Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" requests a certificate be sent by the peer. If the certificate is not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" presented or fails to verify, the connection is terminated without",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" querying the user.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If an anonymous cipher (i.e., ADH) is desired, the NO setting must be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" used. Otherwise, the receipt of the peer certificate request is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" interpreted as a protocol error and the negotiation fails.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If you wish to allow the peer to authenticate using either an X509",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" certificate to userid mapping function or via use of a ~/.tlslogin file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" you must use either PEER-CERT or FAIL-IF-NO-PEER-CERT. Otherwise, any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" certificates that are presented is ignored. In other words, use NO if you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" want to disable the ability to use certificates to authenticate a peer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } VERIFY-DIR <directory>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a directory that contains root CA certificate files used to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" verify the certificate chains presented by the peer. Each file is named",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by a hash of the certificate.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OpenSSL expects the hash symlinks to be made like this:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ln -s cert.pem `openssl x509 -hash -noout -in cert.pem`.0",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Since not all file systems have symlinks you can use the following command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in Kermit to copy the cert.pem file to the hash file name.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" copy cert.pem {\\fcommand(openssl.exe x509 -hash -noout -in cert.pem).0}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This produces a hash based on the subject field in the cert such that the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" certificate may be quickly found.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET AUTHENTICATION { SSL, TLS } VERIFY-FILE <file>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a file that contains root CA certificates to be used for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" verifying certificate chains.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SSL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxynet[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET NETWORK { TYPE network-type, DIRECTORY [ file(s)... ] }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Select the type of network to be used with SET HOST connections:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NETCMD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET NETWORK TYPE COMMAND ; Make a connection through an external command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NETCMD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TCPSOCKET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET NETWORK TYPE TCP/IP ; Internet: Telnet, Rlogin, etc.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TCPSOCKET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ANYX25
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET NETWORK TYPE X.25 ; X.25 peer-to-peer connections.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ANYX25 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DECNET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET NETWORK TYPE PATHWORKS { LAT, CTERM } ; DEC LAT or CTERM connections.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DECNET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NPIPE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET NETWORK TYPE NAMED-PIPE <pipename> ; OS/2 Named Pipe connections.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NPIPE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_NETBIOS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET NETWORK TYPE NETBIOS ; NETBIOS peer-to-peer connections",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_NETBIOS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SUPERLAT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET NETWORK TYPE SUPERLAT ; LAT connections (Meridian Technology SuperLAT)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SUPERLAT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"If only one network type is listed above, that is the default network for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RLOGCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET HOST commands. Also see SET HOST, TELNET, RLOGIN.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TNCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET HOST commands. Also see SET HOST, TELNET.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET HOST commands. Also see SET HOST.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TNCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RLOGCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET NETWORK DIRECTORY [ file [ file [ ... ] ] ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the name(s) of zero or more network directory files, similar to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" dialing directories (HELP DIAL for details). The general format of a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" network directory entry is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name network-type address [ network-specific-info ] [ ; comment ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For TCP/IP, the format is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name tcp/ip ip-hostname-or-address [ socket ] [ ; comment ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"You can have multiple network directories and you can have multiple entries",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"with the same name. SET HOST <name> and TELNET <name> commands look up the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"given <name> in the directory and, if found, fill in the additional items",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"from the entry, and then try all matching entries until one succeeds.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOTCPOPTS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxytcp[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SOL_SOCKET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP ADDRESS <ip-address>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This allows a specific IP Address on a multihomed host to be used",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" instead of allowing the TCP/IP stack to choose. This may be necessary",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when using authentication or listening for an incoming connection.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specify no <ip-address> to remove the preference.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP KEEPALIVE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Setting this ON might help to detect broken connections more quickly.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (default is ON.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP LINGER { ON [timeout], OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Setting this ON ensures that a connection doesn't close before all",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" outstanding data has been transferred and acknowledged. The timeout is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" measured in 10ths of milliseconds. The default is ON with a timeout of 0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP NODELAY { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON means send short TCP packets immediately rather than waiting",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to accumulate a bunch of them before transmitting (Nagle Algorithm).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (default is OFF.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP RECVBUF <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP SENDBUF <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TCP receive and send buffer sizes. (default is -1, use system defaults.)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"These items let you tune TCP networking performance on a per-connection",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"basis by adjusting parameters you normally would not have access to. You",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"should use these commands only if you feel that the TCP/IP protocol stack",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"that Kermit is using is giving you inadequate performance, and then only if",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"you understand the concepts (see, for example, the Comer TCP/IP books), and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"then at your own risk. These settings are displayed by SHOW NETWORK. Not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"all options are necessarily available in all Kermit versions; it depends on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"the underlying TCP/IP services.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"The following TCP and/or IP parameter(s) may also be changed:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SOL_SOCKET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP REVERSE-DNS-LOOKUP { AUTO, ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit whether to perform reverse DNS lookup on TCP/IP connections",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" so Kermit can determine the actual hostname of the host it is connected",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to, which is useful for connections to host pools, and is required for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kerberos connections to host pools and for incoming connections. If the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" other host does not have a DNS entry, the reverse lookup could take a long",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" time (minutes) to fail, but the connection will still be made. Turn this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" option OFF for speedier connections if you do not need to know exactly",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" which host you are connected to and you are not using Kerberos. AUTO, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default, means the lookup is done on hostnames, but not on numeric IP",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" addresses unless Kerberos support is installed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_DNS_SRV
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP DNS-SERVICE-RECORDS {ON, OFF}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells Kermit whether to try to use DNS SRV records to determine the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" host and port number upon which to find an advertised service. For",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" example, if a host wants regular Telnet connections redirected to some",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" port other than 23, this feature allows Kermit to ask the host which",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" port it should use. Since not all domain servers are set up to answer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" such requests, this feature is OFF by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_DNS_SRV */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SOCKS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP SOCKS-SERVER [<hostname or ip-address>]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If a hostname or ip-address is specified, Kermit will use the SOCKS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" server when attempting outgoing connections. If no hostname or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ip-address is specified, any previously specified SOCKS server will",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be removed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SOCKS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOHTTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TCP HTTP-PROXY [<hostname or ip-address>[:<port>]]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If a hostname or ip-address is specified, Kermit will use the Proxy",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" server when attempting outgoing connections. If no hostname or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ip-address is specified, any previously specified Proxy server will",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be removed. If no port number is specified, the \"http\" service",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" will be used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHTTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOTCPOPTS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NETCONN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TNCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxytopt[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELOPT [ { /CLIENT, /SERVER } ] <option> -",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" { ACCEPTED, REFUSED, REQUESTED, REQUIRED } -",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" [ { ACCEPTED, REFUSED, REQUESTED, REQUIRED } ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET TELOPT lets you specify policy requirements for Kermit's handling of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Telnet option negotiations. Setting an option REQUIRED causes Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to offer the option to the peer and disconnect if the option is refused.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" REQUESTED causes Kermit to offer an option to the peer. ACCEPTED results",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in no offer but Kermit will attempt to negotiate the option if it is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" requested. REFUSED instructs Kermit to refuse the option if it is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" requested by the peer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Some options are negotiated in two directions and accept separate policies",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for each direction; the first keyword applies to Kermit itself, the second",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" applies to Kermit's Telnet partner; if the second keyword is omitted, an",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" appropriate (option-specific) default is applied. You can also include a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /CLIENT or /SERVER switch to indicate whether the given policies apply",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" when Kermit is the Telnet client or the Telnet server; if no switch is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" given, the command applies to the client.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Note that some of Kermit's Telnet partners fail to refuse options that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" they do not recognize and instead do not respond at all. In this case it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is possible to use SET TELOPT to instruct Kermit to REFUSE the option",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" before connecting to the problem host, thus skipping the problematic",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" negotiation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use SHOW TELOPT to view current Telnet Option negotiation settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SHOW TELNET displays current Telnet settings.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxytel[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET TELNET parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"For TCP/IP TELNET connections, which are in NVT (ASCII) mode by default:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_AUTHENTICATION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef COMMENT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET AUTHENICATION { ACCEPTED, REFUSED, REQUESTED, REQUIRED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ACCEPT or REFUSE authentication bids, or actively REQUEST authentication.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" REQUIRED refuses the connection if authentication is not successfully",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" negotiated. ACCEPTED by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* COMMENT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET AUTHENTICATION TYPE { AUTOMATIC, KERBEROS_IV, KERBEROS_V, ...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ..., NTLM, SSL, SRP, NONE } [...]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ..., SSL, SRP, NONE } [...]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTOMATIC is the default. Available options can vary depending on the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" features Kermit was built to support and the operating system",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" configuration; type SET TELNET AUTHENTICATION TYPE ? for a list.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When Kermit is the Telnet client:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTOMATIC allows the host to choose the preferred type of authentication."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NONE instructs Kermit to refuse all authentication methods when the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" authentication option is negotiated. A list of one or more other values",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" allow a specific subset of the supported authentication methods to be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When Kermit is the Telnet server:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTOMATIC results in available authentication methods being offered",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to the telnet client in the following order:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KERBEROS_V, KERBEROS_IV, SRP, SSL, NTLM",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KERBEROS_V, KERBEROS_IV, SRP, SSL, NTLM",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" NONE results in no authentication methods being offered to the Telnet",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" server when the authentication option is negotiated. The preferred",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" method of disabling authentication is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET TELOPT /SERVER AUTHENTICATION REFUSE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" A list of one or more authentication methods specifies the order those",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" methods are to be offered to the telnet client.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If you wish to allow NTLM authentication to be used with the Microsoft",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Windows 2000 or Services for Unix Telnet client you must specify a list",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with NTLM as the first item in the list. By default, NTLM is the last",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" item in the list because it does not provide any form of data encryption.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_KERBEROS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET AUTHENTICATION FORWARDING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Set this to ON to forward Kerberos V ticket-granting-tickets to the host",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" after authentication is complete. OFF by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_KERBEROS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET AUTHENTICATION ENCRYPT-FLAG { ANY, NONE, TELOPT }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use this command to specify which AUTH telopt encryption flags may be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" accepted in client mode or offered in server mode. The default is ANY.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET AUTHENTICATION HOW-FLAG { ANY, ONE-WAY, MUTUAL }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use this command to specify which AUTH telopt how flags may be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" accepted in client mode or offered in server mode. The default is ANY.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_AUTHENTICATION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef COMMENT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET BINARY-MODE { ACCEPTED, REFUSED, REQUESTED, REQUIRED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ACCEPT or REFUSE binary-mode bids, or actively REQUEST binary mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" REQUIRED refuses the connection if binary mode is not successfully",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" negotiated in both directions. ACCEPTED by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* COMMENT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET BINARY-TRANSFER-MODE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When ON (OFF by default) and BINARY negotiations are not REFUSED Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" will attempt to negotiate BINARY mode in each direction before the start",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of each file transfer. After the transfer is complete BINARY mode will",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" be restored to the pre-transfer state.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET BINARY-TRANSFER-MODE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Set this command to ON if you want to force Kermit to negotiate",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Telnet Binary in both directions when performing file transfers.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is OFF. Alias SET TELNET BINARY-XFER-MODE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET BUG AUTH-KRB5-DES { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is ON. Disable this bug to enable the use of encryption types",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" other than DES such as 3DES or CAST-128 when the Kerberos 5 session key",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is longer than 8 bytes.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET BUG BINARY-ME-MEANS-U-TOO { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Set this to ON to try to overcome TELNET binary-mode misnegotiations by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit's TELNET partner.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET BUG BINARY-U-MEANS-ME-TOO { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Set this to ON to try to overcome TELNET binary-mode misnegotiations by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit's TELNET partner.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET BUG INFINITE-LOOP-CHECK { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Set this to ON to prevent Kermit from responding to a telnet negotiation",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" sequence that enters an infinite loop. The default is OFF because this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" should never occur.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET BUG SB-IMPLIES-WILL-DO { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Set this to ON to allow Kermit to respond to telnet sub-negotiations if",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the peer forgets to respond to WILL with DO or to DO with WILL.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET DEBUG { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Set this to ON to display telnet negotiations as they are sent and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" received.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET DELAY-SB { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When ON, telnet subnegotiation responses are delayed until after all",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" authentication and encryption options are either successfully negotiated",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or refused. This ensures that private data is protected. When OFF, telnet",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" subnegotiation responses are sent immediately. The default is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET ECHO { LOCAL, REMOTE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit's initial echoing state for TELNET connections, LOCAL by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" After the connection is made, TELNET negotiations determine the echoing.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_ENCRYPTION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef COMMENT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET ENCRYPTION { ACCEPTED, REFUSED, REQUESTED, REQUIRED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ACCEPT or REFUSE encryption bids, or actively REQUEST encryption in both.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directions. REQUIRED refuses the connection if encryption is not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" successfully negotiated in both directions. ACCEPTED by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* COMMENT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET ENCRYPTION TYPE { AUTOMATIC, CAST128_CFB64, CAST128_OFB64, ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CAST5_40_CFB64, CAST5_40_OFB64, DES_CFB64, DES_OFB64, NONE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTOMATIC allows the host to choose the preferred type of encryption.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Other values allow a specific encryption method to be specified.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTOMATIC is the default. The list of options will vary depending",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" on the encryption types selected at compilation time.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_ENCRYPTION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_ENVIRONMENT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef COMMENT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET ENVIRONMENT { ON, OFF, variable-name [ value ] }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This feature lets Kermit send the values of certain environment variables",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to the other computer if it asks for them. The variable-name can be any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of the \"well-known\" variables \"USER\", \"JOB\", \"ACCT\", \"PRINTER\",",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"SYSTEMTYPE\", or \"DISPLAY\". Some Telnet servers, if given a USER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" value in this way, will accept it and therefore not prompt you for user",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name when you log in. The default values are taken from your environment;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" use this command to change or remove them. See RFC1572 for details. You",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" may also specify OFF to disable this feature, and ON to re-enable it.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET ENVIRONMENT { variable-name [ value ] }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This feature lets Kermit send the values of certain environment variables",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to the other computer if it asks for them. The variable-name can be any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of the \"well-known\" variables \"USER\", \"JOB\", \"ACCT\", \"PRINTER\",",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"SYSTEMTYPE\", or \"DISPLAY\". Some Telnet servers, if given a USER",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" value in this way, will accept it and therefore not prompt you for user",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" name when you log in. The default values are taken from your environment;",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" use this command to change or remove them. See RFC1572 for details.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* COMMENT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_ENVIRONMENT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_FORWARD_X
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET FORWARD-X XAUTHORITY-FILE <file>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If your X Server requires X authentication and the location of the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" .Xauthority file is not defined by the XAUTHORITY environment variable,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" use this command to specify the location of the .Xauthority file."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_FORWARD_X */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SNDLOC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET LOCATION [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Location string to send to the Telnet server if it asks. By default this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is picked up from the LOCATION environment variable. Give this command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with no text to disable this feature.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SNDLOC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET NEWLINE-MODE { NVT, BINARY-MODE } { OFF, ON, RAW }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines how carriage returns are handled on TELNET connections. There",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are separate settings for NVT (ASCII) mode and binary mode. ON (default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for NVT mode) means CRLF represents CR. OFF means CR followed by NUL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" represents CR. RAW (default for BINARY mode) means CR stands for itself.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TCPSOCKET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET PROMPT-FOR-USERID <prompt>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a custom prompt to be used when prompting for a userid. Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" prompts for a userid if the command:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET LOGIN USERID {}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" has been issued prior to a Telnet authentication negotiation for an",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" authentication type that requires the transmission of a name, such as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Secure Remote Password.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TCPSOCKET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET REMOTE-ECHO { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Applies only to incoming connections created with:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET HOST * <port> /TELNET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command determines whether Kermit will actually echo characters",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" received from the remote when it has negotiated to do so. The default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is ON. Remote echoing may be turned off when it is necessary to read",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a password with the INPUT command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET TERMINAL-TYPE name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The terminal type to send to the remote TELNET host. If none is given,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" your current SET TERMINAL TYPE value is sent, e.g. VT220.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" your local terminal type is sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TELNET WAIT-FOR-NEGOTIATIONS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Each Telnet option must be fully negotiated either On or Off before the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" session can continue. This is especially true with options that require",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" subnegotiations such as Authentication, Encryption, and Kermit; for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" proper support of these options Kermit must wait for the negotiations to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" complete. Of course, Kermit has no way of knowing whether a reply is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" delayed or not coming at all, and so will wait a minute or more for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" required replies before continuing the session. If you know that Kermit's",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Telnet partner will not be sending the required replies, you can set this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" option of OFF to avoid the long timeouts. Or you can instruct Kermit to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" REFUSE specific options with the SET TELOPT command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Type SHOW TELNET to see the current values of these parameters.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TNCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxymacr[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET MACRO parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Controls the behavior of macros.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MACRO ECHO { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether commands executed from a macro definition should be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" displayed on the screen. OFF by default; use ON for debugging.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MACRO ERROR { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether a macro should be automatically terminated upon a command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" error. This setting is local to the current macro, and inherited by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" subordinate macros.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxyprm[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET PROMPT [ text ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Prompt text for this program, normally 'K-95>'. May contain backslash",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef MAC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Prompt text for this program, normally 'Mac-Kermit>'. May contain backslash",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Prompt text for this program, normally 'C-Kermit>'. May contain backslash",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* MAC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"codes for special effects. Surround by { } to preserve leading or trailing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"spaces. If text omitted, prompt reverts to K-95>. Prompt can include",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef MAC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"spaces. If text omitted, prompt reverts to Mac-Kermit>. Prompt can include",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"spaces. If text omitted, prompt reverts to C-Kermit>. Prompt can include",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* MAC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"variables like \\v(dir) or \\v(time) to show current directory or time.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxywild[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET WILDCARD-EXPANSION { KERMIT [ switch ], SHELL, ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" KERMIT (the default) means C-Kermit expands filename wildcards in SEND and",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" similar commands itself, and in incoming GET commands. Optional switches",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are /NO-MATCH-DOT-FILES (\"*\" and \"?\" should not match an initial",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" period in a filename; this is the default) and /MATCH-DOT-FILES if you",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" want files whose names begin with \".\" included. SET WILDCARD SHELL",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" means that Kermit asks your preferred shell to expand wildcards (this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" should not be necessary in C-Kermit 7.0 and later). HELP WILDCARD for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" further information.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The ON and OFF choices allow you to disable and renable wildcard",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" processing independent of the KERMIT / SHELL choice. Disabling wildcards",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" allows you to process an array or list of filenames without having to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" consider whether the names might contain literal wildcard characters.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" WARNING: SET WILD OFF also disables internal filename pattern-matching,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" used (for example) in creating backup files.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxywild[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET WILDCARD-EXPANSION { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON (the default) means that filenames given to Kermit commands such as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SEND and DIRECTORY are automatically expanded into lists of filenames if",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" they contain special 'wildcard characters' such as '*'. You can reference",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files whose names contains such characters literally by preceding each",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" such character with a backslash '\\'. When dealing programmatically with",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a file list, however, you should SET WILDCARD-EXPANSION OFF to force",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" treat each name in the list as a literal name. See HELP WILDCARDS for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" details about wildcard syntax."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxywind[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET WINDOW-SIZE number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies number of slots for sliding windows, i.e. the number of packets",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that can be transmitted before waiting for acknowledgement. The default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef XYZ_INTERNAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" for Kermit protocol is one, the maximum is 32; for ZMODEM, the default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is no windowing (0). For ZMODEM, the window size is really the packet",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" length, and is used only when non-windowed (streaming) transfers fail; the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ZMODEM window size should be a largish number, like 1024, and it should be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a multiple of 64.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is one, the maximum is 32. Increased window size might result in reduced",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" maximum packet length. Use sliding windows for improved efficiency on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" connections with long delays. A full duplex connection is required, as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" well as a cooperating Kermit on the other end.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* XYZ_INTERNAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyrpt[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET REPEAT { COUNTS { ON, OFF }, PREFIX <code> }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET REPEAT COUNTS turns the repeat-count compression mechanism ON and OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The default is ON. SET REPEAT PREFIX <code> sets the repeat-count prefix",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" character to the given code. The default is 126 (tilde).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyrcv[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET RECEIVE parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies parameters for inbound packets:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE CHARACTER-SET { AUTOMATIC, MANUAL }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to automatically switch to an appropriate file-character set based",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" on the transfer character-set announcer, if any, of an incoming text file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTOMATIC by default. Also see HELP ASSOCIATE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE CONTROL-PREFIX number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of prefix character used for quoting control characters in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" packets that Kermit receives, normally 35 (number sign). Don't change",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" this unless something is wrong with the other Kermit program.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE END-OF-PACKET number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of control character that terminates incoming packets,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" normally 13 (carriage return).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKXXCHAR
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE IGNORE-CHARACTER number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of character to be discarded when receiving packets, such as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" line folding characters.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKXXCHAR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE MOVE-TO [ directory ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If a directory name is specified, then every file that is received",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" successfully is moved to the given directory immediately after reception",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is complete. Omit the directory name to remove any previously set move-to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE PACKET-LENGTH number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Maximum length packet the other Kermit should send.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE PADDING number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Number of prepacket padding characters to ask for (normally 0).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE PAD-CHARACTER number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of control character to use for padding (normally 0).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE PATHNAMES {OFF, ABSOLUTE, RELATIVE, AUTO}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If a recognizable path (directory, device) specification appears in an",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" incoming filename, strip it OFF before trying to create the output file.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_MKDIR
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Otherwise, then if any of the directories in the path don't exist, Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" tries to create them, relative to your current or download directory, or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" absolutely, as specified. RELATIVE means force all incoming names, even",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" if they are absolute, to be relative to your current or download directory."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" AUTO, which is the default, means RELATIVE if the file sender indicates in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" advance that this is a recursive transfer, otherwise OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_MKDIR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE PAUSE number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Milliseconds to pause between packets, normally 0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_PERMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE PERMISSIONS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to copy file permissions from inbound Attribute packets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_PERMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE RENAME-TO [ template ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If a template is specified, then every file that is received successfully",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
is renamed according to the given template immediately after it is received.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The template should include variables like \\v(filename) or \\v(filenumber).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Omit the template to remove any template previously set.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE START-OF-PACKET number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of character that marks start of inbound packet.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE TIMEOUT number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Number of seconds the other Kermit should wait for a packet before sending",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" a NAK or retransmitting.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET RECEIVE VERSION-NUMBERS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If ON, and in incoming filename includes a VMS version number, use it when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" creating the file. If OFF (which is the default), strip any VMS version",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" number from incoming filenames before attempting to create the file, \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
causing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the new file to receive the next highest version number.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxysnd[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SEND parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies parameters for outbound files or packets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND BACKUP { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether to include backup files when sending file groups. Backup",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" files are those created by Kermit, EMACS, etc, when creating a new file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" that has the same name as an existing file. A backup file has a version",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" appended to its name, e.g. oofa.txt.~23~. ON is the default, meaning",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" don't exclude backup files. Use OFF to exclude backup files from group",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfers.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND CHARACTER-SET { AUTOMATIC, MANUAL }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to automatically switch to an appropriate file-character when a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET TRANSFER CHARACTER-SET command is given, or vice versa. AUTOMATIC by",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default. Also see HELP ASSOCIATE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND CONTROL-PREFIX number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of prefix character used for quoting control characters in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" packets that Kermit sends, normally 35 (number sign).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKXXCHAR
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND DOUBLE-CHARACTER number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of character to be doubled when sending packets, such as an",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" X.25 PAD escape character.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKXXCHAR */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND END-OF-PACKET number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of control character to terminate an outbound packet,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" normally 13 (carriage return).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND MOVE-TO [ directory ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If a directory name is specified, then every file that is sent successfully",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is moved to the given directory immediately after it is sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Omit the directory name to remove any previously set move-to directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND PACKET-LENGTH number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Maximum length packet to send, even if other Kermit asks for longer ones.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command can not be used to force packets to be sent that are longer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" than the length requested by the receiver. Use this command only to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" force shorter ones.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND PADDING number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Number of prepacket padding characters to send.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND PAD-CHARACTER number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of control character to use for padding.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND PATHNAMES {OFF, ABSOLUTE, RELATIVE}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Include the path (device, directory) portion with the file name when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" sending it as specified; ABSOLUTE means to send the whole pathname,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" RELATIVE means to include the pathname relative to the current directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Applies to the actual filename, not to the \"as-name\". The default is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND PAUSE number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Milliseconds to pause between packets, normally 0.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_PERMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND PERMISSIONS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to include file permissions in outbound Attribute packets.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_PERMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND RENAME-TO [ template ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If a template is specified, then every file that is sent successfully",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is renamed according to the given template immediately after it is sent.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The template should include variables like \\v(filename) or \\v(filenumber).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Omit the template to remove any template previously set.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND START-OF-PACKET number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII value of character to mark start of outbound packet.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TIMERS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND TIMEOUT number [ { DYNAMIC [ min max ] ], FIXED } ]",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND TIMEOUT number",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TIMERS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Number of seconds to wait for a packet before sending NAK or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TIMERS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" retransmitting. Include the word DYNAMIC after the number in the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET SEND TIMEOUT command to have Kermit compute the timeouts dynamically",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" throughout the transfer based on the packet rate. Include the word FIXED",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to use the \"number\" given throughout the transfer. DYNAMIC is the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" default. After DYNAMIC you may include minimum and maximum values.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" retransmitting.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TIMERS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET SEND VERSION-NUMBERS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If ON, include VMS version numbers in outbound filenames. If OFF (which",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is the default), strip version numbers.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxyxfer[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET TRANSFER (or XFER) paramater value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Choices:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER BELL { OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether to ring the terminal bell at the end of a file transfer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef XFRCAN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER CANCELLATION { OFF, ON [ <code> [ <number> ] ] }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OFF disables remote-mode packet-mode cancellation from the keyboard.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON enables it. The optional <code> is the control character to use for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" cancellation; the optional <number> is how many consecutive occurrences",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of the given control character are required for cancellation.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* XFRCAN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER INTERRUPTION { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TRANSFER INTERRUPTION is normally ON, allowing for interruption of a file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" transfer in progress by typing certain characters while the file-transfer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" display is active. SET TRANSFER INTERRUPTION OFF disables interruption",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of file transfer from the keyboard in local mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER CRC-CALCULATION { OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tells whether Kermit should accumulate a Cyclic Redundancy Check for ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" each file transfer. Normally ON, in which case the CRC value is available",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in the \\v(crc16) variable after the transfer. Adds some overhead. Use",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET TRANSFER CRC OFF to disable.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER CHARACTER-SET name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Selects the character set used to represent textual data in Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" packets. Text characters are translated to/from the FILE CHARACTER-SET.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Choices:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" TRANSPARENT (no translation, the default)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ASCII",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LATIN1 (ISO 8859-1 Latin Alphabet 1)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLATIN2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LATIN2 (ISO 8859-2 Latin Alphabet 2)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLATIN2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" LATIN9 (ISO 8859-15 Latin Alphabet 9)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CYRILLIC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" CYRILLIC-ISO (ISO 8859-5 Latin/Cyrillic)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CYRILLIC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef GREEK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" GREEK-ISO (ISO 8859-7 Latin/Greek)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* GREEK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef HEBREW
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" HEBREW-ISO (ISO 8859-8 Latin/Hebrew)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* HEBREW */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KANJI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" JAPANESE-EUC (JIS X 0208 Kanji + Roman and Katakana)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KANJI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNICODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UCS-2 (ISO 10646 / Unicode 2-byte form)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" UTF-8 (ISO 10646 / Unicode 8-bit serialized transformation format)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNICODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER TRANSLATION { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enables and disables file-transfer character-set translation. It's",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" enabled by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_CURSES
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER DISPLAY { BRIEF, CRT, FULLSCREEN, NONE, SERIAL }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER DISPLAY { BRIEF, CRT, NONE, SERIAL }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_CURSES */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Choose the desired format for the progress report to be displayed on",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" your screen during file transfers when Kermit is in local mode.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_CURSES
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FULLSCREEN requires your terminal type be set correctly; the others",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" are independent of terminal type.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" file transfer.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_CURSES */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER LOCKING-SHIFT { OFF, ON, FORCED }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Tell whether locking-shift protocol should be used during file transfer",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to achieve 8-bit transparency on a 7-bit connection. ON means to request",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" its use if PARITY is not NONE and to use it if the other Kermit agrees,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" OFF means not to use it, FORCED means to use it even if the other Kermit",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" does not agree.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER MODE { AUTOMATIC, MANUAL }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Automatic (the default) means Kermit should automatically go into binary",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" file-transfer mode and use literal filenames if the other Kermit says it",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" has a compatible file system, e.g. UNIX-to-UNIX, but not UNIX-to-DOS.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef PATTERNS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Also, when sending files, Kermit should switch between binary and text",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" mode automatically per file based on the SET FILE BINARY-PATTERNS and SET",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" FILE TEXT-PATTERNS.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* PATTERNS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef PIPESEND
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER PIPES { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enables/Disables automatic sending from / reception to command pipes when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the incoming filename starts with '!'. Also see CSEND, CRECEIVE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* PIPESEND */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_XYZ
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER PROTOCOL { KERMIT, XMODEM, ... }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonym for SET PROTOCOL (q.v.).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_XYZ */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER REPORT { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Enables/Disables the automatic post-transfer message telling what files",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" went where from C-Kermit when it is in remote mode. ON by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET TRANSFER SLOW-START { OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON (the default) tells Kermit, when sending files, to gradually build up",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the packet length to the maximum negotiated length. OFF means start",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" sending the maximum length right away.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Synonym: SET XFER. Use SHOW TRANSFER (XFER) to see SET TRANSFER values.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hxywin95[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET WIN95 8.3-FILENAMES { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Instructs K-95 to report all filenames using 8.3 notation instead of the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" normal long filenames. Default is OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET WIN95 ALT-GR { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Instructs K-95, when used on MS Windows 95, to interpret the Right Alt key",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" as the Alt-Gr key. This is necessary to work around the failure of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Windows 95 to properly translate non-US keyboards. Default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET WIN95 KEYBOARD-TRANSLATION <character-set>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the character-set that Windows 95 is using to send keystrokes",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to Kermit-95 via the keyboard input functions. Default is Latin1-ISO.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET WIN95 OVERLAPPED-IO { ON <requests>, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether or not K-95 uses Overlapped-I/O methods for reading",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from and writing to serial and TAPI communication devices. <requests>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specifies the maximum number of simultaneous write requests that may be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" overlapped, from 1 to 30. Default is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET WIN95 POPUPS { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Determines whether or not Kermit 95 uses Popups to query the user for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" necessary information such as user IDs or passwords. Default is ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET WIN95 SELECT-BUG { ON, OFF }"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Some TCP/IP (Winsock) implementations for Windows have a defective",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" select() function. Use this command to avoid the use of select() if",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" K95 appears to be unable to send data over TCP/IP. Default is OFF.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxybel[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET BELL { AUDIBLE [ { BEEP, SYSTEM-SOUNDS } ], VISIBLE, NONE }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies how incoming Ctrl-G (bell) characters are handled in CONNECT",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" mode and how command warnings are presented in command mode. AUDIBLE",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" means either a beep or a system-sound is generated; VISIBLE means the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" screen is flashed momentarily.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET BELL { OFF, ON }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON (the default) enables ringing of the terminal bell (beep) except where",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it is disabled in certain circumstances, e.g. by SET TRANSFER BELL. OFF",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" disables ringing of the bell in all circumstances, overriding any specific",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET xxx BELL selections.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxymsk[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MSKERMIT FILE-RENAMING { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON enables the use of MS-DOS Kermit file renaming conventions instead of",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" C-Kermit conventions. File renaming occurs during file transfers when",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" there is a file name collision and either BACKUP or RENAME collision",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" options are active. C-Kermit conventions preserve the original file name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" while appending .~num~ to the end. MS-DOS Kermit conventions restrict",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" filenames to 8.3 notation and preserve the extension. Unique numeric",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" values overwrite the right most portion of the file name's left hand side.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET MSKERMIT KEYCODES { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ON enables the use of MS-DOS Kermit compatible keycodes to provide script",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" portability.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hmxycd[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET CD { HOME <path>, PATH <path>, MESSAGE { ON, OFF, FILE <list> } }"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET CD HOME <path>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specified which directory to change to if CD or KCD is given without a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" pathname. If this command is not given, your login or HOME directory is",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET CD PATH <path>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Overrides normal CDPATH environment variable, which tells the CD command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" where to look for directories to CD to if you don't specify them fully.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The format is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIXOROSK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" set cd path :directory:directory:...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in other words, a list of directories separated by colons, with a colon",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" at the beginning, e.g.:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" set cd path :/usr/olga:/usr/ivan/public:/tmp",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" set cd path disk:directory;disk:directory;...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" just like the DOS PATH; in other words, a list of disk:directory names",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" separated by semicolons, e.g.:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET CD PATH C:\\K95;C:\\HOME;C:\\LOCAL;C:\\",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" set cd path directory,directory,...",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in other words, a list of directory specifications or logical names that",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" represent them, e.g.:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET CD PATH SYS$LOGIN:,$DISK1:[OLGA],$DISK2[SCRATCH.IVAN].",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (unknown for this platform)",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIXOROSK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET CD MESSAGE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Default is OFF. When ON, this tells Kermit to look for a file with a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" certain name in any directory that you CD to, and if it finds one, to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" display it on your screen when you give the CD command. The filename,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or list of names, is given in the SET CD MESSAGE FILE command.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET CD MESSAGE FILE name",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET CD MESSAGE FILE {{name1}{name2}...{name8}}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specify up to 8 filenames to look for when when CDing to a new directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and CD MESSAGE is ON. The first one found, if any, in the new directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef DFCDMSG
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is displayed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is displayed. The default list is:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIXOROSK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" {{./.readme}{README.TXT}{READ.ME}}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" {{README.TXT}{READ.ME}}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIXOROSK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DFCDMSG */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSERVER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Synonym: SET SERVER CD-MESSAGE FILE.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSERVER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Type SHOW CD to view current CD settings. Also see HELP SET SERVER.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOIKSD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char * hsetiks[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS ANONYMOUS ACCOUNT <username>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" On Windows NT/2000 this is the account that will be used to allow",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" anonymous access to the system. This account MUST have no password",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and its privileges should be restricted to only allow those operations",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" which should be permitted to unknown users. In practice this means",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" List Directories and Read-Execute privileges only. If a directory",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is configured for Write privileges then Read privileges should be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" denied for that directory. Otherwise, your system will become used",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" by software pirates. If this command is not specified in the IKSD.KSC",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" file the username \"GUEST\" is used by default. This command has no",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" effect on Windows 95/98.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS ANONYMOUS INITFILE filename",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The initialization file to be executed for anonymous logins. By default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it is K95.INI in the home directory associated with the ANNONYMOUS account."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Any filename that you specify here must be readable by the ANONYMOUS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" account and if a SET IKS ANONYMOUS ROOT command was given, exist within",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the restricted directory tree. This option is independent of the SET IKS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" INITFILE command which applies only to real users.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The initialization file to be executed for anonymous logins. By default",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" it is .kermrc in the anonymous root directory. This option is independent",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" of the SET IKS INITFILE command which applies only to real users.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS ANONYMOUS LOGIN { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether anonymous logins are allowed. By default they are NOT allowed,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" so this option need be included only to allow them (or for clarity, to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" emphasize that they are not allowed). Anonymous login occurs when the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" username \"anonymous\" is specified with any password (as with ftpd).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" In order for anonymous logins to succeed on Windows NT/2000, the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ANONYMOUS account must be enabled.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" On Windows NT and 2000, anonymous users have the same access rights as",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the ANONYMOUS account. In Windows 95/98, anonymous users, just like any",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" other users, have full access rights to your entire PC, since Windows 95",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and 98 include no security features. For this reason, if you are allowing",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" anonymous logins, be sure to also SET an IKS ANONYMOUS ROOT directory to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" restrict anonymous users' file access.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Anonymous user permissions may be restricted via the specification of ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DISABLE commands in the ANONYMOUS initfile. Anonymous users are not ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" permitted to execute an ENABLE command. Anonymous users are also prevented"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" from SHOWing sensitive data about the operating system or the IKS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" configuration.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether anonymous logins are allowed. By default they are allowed, so this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" option need be included only to disallow them (or for clarity, to emphasize"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" they are allowed). Anonymous login occurs when the username \"anonymous\"",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" or \"ftp\" is given, with any password (as with ftpd).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS ANONYMOUS ROOT <directory>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies a directory tree to which anonymous users are restricted after",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" login.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS BANNERFILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The name of a file containing a message to be printed after the user logs",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in, in place of the normal message (copyright notice, \"Type HELP or ? for",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" help\", etc).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS CDFILE <filelist>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When cdmessage is on, this is the name of the \"read me\" file to be shown."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Normally you would specify a relative (not absolute) name, since the file",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is opened using the literal name you specified, after changing to the new",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" directory. Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET IKS CDFILE READ.ME",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" You can also give a list of up to 8 filenames by (a) enclosing each",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" filename in braces, and (b) enclosing the entire list in braces. Example:",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET IKS CDFILE {{READ.ME}{aareadme.txt}{README}{read-this-first}}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" When a list is given, it is searched from left to right and the first",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" file found is displayed.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS CDMESSAGE {ON, OFF, 0, 1, 2}",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For use in the Server-Side Server configuration; whenever the client",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" tells the server to change directory, the server sends the contents of a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"read me\" file to the client's screen. This feature is ON by default,",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" and operates in client/server mode only when ON or 1. If set to 2 or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" higher, it also operates when the CD command is given at the IKSD> prompt.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Synonym: SET IKS CDMSG.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS DATABASE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This command determines whether entries are inserted into the SET IKS",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" DBFILE (IKSD active sessions database).",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS DBFILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the file which should be used for storing runtime status",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" information about active connections. The default is a file called",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"iksd.db\" in the WINDOWS directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" information about active connections. The default is a file called",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"iksd.db\" in the /var/log directory.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" information about active connections.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS DEFAULT-DOMAIN <domain-name>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" A userid on Windows is of the form DOMAIN\\\\userid. This command",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" determines which domain will be searched for the userid if a domain",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is not specified by the user. On Windows 95/98 when User-level",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" access is activated in the Network Control Panel, the default ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" domain will be automatically set. If the default domain is not",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specified, accounts on the local machine will take precedence over",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" accounts in Domains to which the local machine belongs.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS HELPFILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Specifies the name of a file to be displayed if the user types HELP",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (not followed by a specific command or topic), in place of the built-in",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" top-level help text. The file need not fit on one screen; more-prompting",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is used if the file is more than one screen long if COMMAND MORE-PROMPTING",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is ON, as it is by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS INITFILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Execute <filename> rather than the normal initialization file for real",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" users; this option does not apply to anonymous users.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS NO-INITFILE { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Do not execute an initialization file, even if a real user is logging in.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS SERVER-ONLY { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If this option is included on the IKSD command line, the Client Side Server"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" configuration is disabled, and the user will not get a Username: or",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Password: prompt, and will not be able to access the IKSD command prompt.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" A FINISH command sent to the IKSD will log it out and close the",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" connection, rather than returning it to its prompt.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS TIMEOUT <number>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This sets a limit (in seconds) on the amount of time the client has to log",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" in once the connection is made. If successful login does not occur within",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" the given number of seconds, the connection is closed. The default timeout"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" is 300 seconds (5 minutes). A value of 0 or less indicates there is to be",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" no limit.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS USERFILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This file contains a list of local usernames that are to be denied access",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to Internet Kermit Service. The default is /etc/ftpusers. This can be the"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
,
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" same file that is used by wuftpd, and the syntax is the same: one username",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" per line; lines starting with \"#\" are ignored. Use this option to",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" specify the name of a different forbidden-user file, or use",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" \"set iks userfile /dev/null\" to disable this feature in case there is a",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /etc/ftpusers file but you don't want to use it.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" This file contains a list of local usernames that are to be denied access",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to Internet Kermit Service. The syntax is: one username per line; lines",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" starting with \"#\" are ignored.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS XFERLOG { ON, OFF }",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether a file-transfer log should be kept. Off by default. If \"on\",",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" but no SET IKSD XFERFILE command is given, /var/log/iksd.log is used.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Whether a file-transfer log should be kept. Off by default.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" ",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"SET IKS XFERFILE <filename>",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Use this option to specify an iksd log file name. If you include this",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" option, it implies SET IKS XFERFILE ON.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
};
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOIKSD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* D O H S E T -- Give help for SET command */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
dohset(xx) int xx; {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int x;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx == -3) return(hmsga(hmhset));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx < 0) return(xx);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx == XYFTPX)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(dosetftphlp());
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx == XYGPR)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxygpr));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
switch (xx) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOIKSD
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYIKS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hsetiks));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOIKSD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYATTR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hsetat));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYBACK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hsetbkg));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYBELL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxybel));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYPRTY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("SET PRIORITY { REGULAR, FOREGROUND-SERVER, TIME-CRITICAL }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Specifies at which priority level the communication and screen update\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
threads should operate. The default value is FOREGROUND-SERVER."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYMSK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxymsk));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef DYNAMIC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYBUF:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hsetbuf));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* DYNAMIC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYCARR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hsetcar));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYCASE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET CASE { ON, OFF }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Tells whether alphabetic case is significant in string comparisons\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
done by INPUT, IF, and other commands. This setting is local to the\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
current macro or command file, and inherited by subordinates."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYCMD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hsetcmd));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYIFD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET INCOMPLETE { DISCARD, KEEP }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Whether to discard or keep incompletely received files, default is KEEP."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYINPU:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyinp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYCHKT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxychkt));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYCOUN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET COUNT number\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Example: SET COUNT 5\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Set up a loop counter, for use with IF COUNT. Local to current macro\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
or command file, inherited by subordinate macros and command files."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYDEBU:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxydeb));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYDFLT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET DEFAULT directory\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Change directory. Equivalent to CD command."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYDELA:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET DELAY number\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Number of seconds to wait before sending first packet after SEND command."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NODIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYDIAL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxydial));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NODIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSUSP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET SUSPEND { OFF, ON }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Disables SUSPEND command, suspend signals, and <esc-char>Z during CONNECT.")
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSCRIPT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSCRI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET SCRIPT ECHO { OFF, ON }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Disables/Enables echoing of SCRIPT command operation."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSCRIPT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYTAKE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxytak));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYTERM:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyterm));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYDUPL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET DUPLEX { FULL, HALF }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
During CONNECT: FULL means remote host echoes, HALF means Kermit\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
does its own echoing."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYLCLE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET LOCAL-ECHO { OFF, ON }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
During CONNECT: OFF means remote host echoes, ON means Kermit\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
does its own echoing. Synonym for SET DUPLEX { FULL, HALF }."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYESC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyesc)); /* SET ESCAPE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYPRTR: /* SET PRINTER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyprtr));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef BPRINT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYBDCP: /* SET BPRINTER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxybprtr));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* BPRINT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYEXIT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyexit));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYFILE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxyf));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYFLOW:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxyflo));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYHAND:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxyhsh));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NETCONN
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYHOST:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyhost));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYNET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxynet));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOTCPOPTS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef SOL_SOCKET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYTCP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxytcp));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* SOL_SOCKET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOTCPOPTS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ANYX25
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYX25:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyx25));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef IBMX25
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYPAD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET PAD name value\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Set a PAD X.3 parameter with a desired value."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* IBMX25 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ANYX25 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NETCONN */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYOUTP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyout));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSETKEY
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYKEY: /* SET KEY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmhskey));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSETKEY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYLANG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET LANGUAGE name\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Selects language-specific translation rules for text-mode file transfers.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Used with SET FILE CHARACTER-SET and SET TRANSFER CHARACTER-SET when one\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
of these is ASCII."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYLINE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\nSyntax: SET LINE (or SET PORT) [ switches ] [ devicename ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Selects a serial-port device to use for making connections.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" You may access communication ports by the traditional \"DOS\" port name\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" (e.g. SET PORT COM1) or by the Microsoft Telephony modem name from the\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Modems folder of the Control Panel (e.g. SET PORT TAPI). If one method\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" doesn't work, try the other.\n\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Typical device name for this platform: %s.\n",ttgtpn());
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" The default device name is %s (i.e. none).\n",dftty);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (!dfloc) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If you do not give a SET LINE command or if you give a SET LINE command\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" with no device name, or if you specify %s as the device name,\n",dftty);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit will be in \"remote mode\", suitable for use on the far end of a\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" connection, e.g. as the file-transfer partner of your desktop communication\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" software. If you SET LINE to a specific device other than %s,\n", dftty);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit is in \"local mode\", suitable for making a connection to another\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" computer. SET LINE alone resets Kermit to remote mode.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" To use a modem to dial out, first SET MODEM TYPE (e.g., to USR), then\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET PORT COMx (or SET PORT TAPI), SET SPEED, then give a DIAL command.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" SET LINE xxx, then SET SPEED, then give a DIAL command.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For direct null-modem connections use SET MODEM TYPE NONE, SET PORT COMx,\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For direct null-modem connections, use SET MODEM TYPE NONE, SET LINE xxx,\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" then SET FLOW, SET SPEED, and CONNECT.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\nOptional switches:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/CONNECT - Enter CONNECT mode automatically if SET LINE succeeds.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SERVER - Enter server mode automatically if SET LINE succeeds.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /SHARE - Open the device in shared mode.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" /NOSHARE - Open the device in exclusive mode.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Also see HELP SET MODEM, HELP SET DIAL, HELP SET SPEED, HELP SET FLOW.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYMACR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxymacr));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NODIAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYMODM:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxymodm));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NODIAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYPARI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxypari));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYPROM:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxyprm));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYQUIE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET QUIET {ON, OFF}\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Normally OFF. ON disables most information messages during interactive\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
operation."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SPEED
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYQCTL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxyqctl));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SPEED */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYRETR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET RETRY number\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
In Kermit protocol file transfers: How many times to retransmit a\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
particular packet before giving up; 0 = no limit."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSESS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SESSION-LOG { BINARY, DEBUG, TEXT, TIMESTAMPED-TEXT }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If BINARY, record all CONNECT characters in session log. If TEXT, strip\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
out CR, NUL, and XON/XOFF characters. DEBUG is the same as BINARY but\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
also includes Telnet negotiations on TCP/IP connections."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef datageneral
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SESSION-LOG { BINARY, DEBUG, TEXT, TIMESTAMPED-TEXT }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If BINARY, record all CONNECT characters in session log. If TEXT, strip\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
out CR, NUL, and XON/XOFF characters. DEBUG is the same as BINARY but\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
also includes Telnet negotiations on TCP/IP connections."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef STRATUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SESSION-LOG { BINARY, DEBUG, TEXT, TIMESTAMPED-TEXT }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If BINARY, record all CONNECT characters in session log. If TEXT, strip\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
out CR, NUL, and XON/XOFF characters. DEBUG is the same as BINARY but\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
also includes Telnet negotiations on TCP/IP connections."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef AMIGA
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SESSION-LOG { BINARY, DEBUG, TEXT, TIMESTAMPED-TEXT }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If BINARY, record all CONNECT characters in session log. If TEXT, strip\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
out CR, NUL, and XON/XOFF characters. DEBUG is the same as BINARY but\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
also includes Telnet negotiations on TCP/IP connections."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef GEMDOS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SESSION-LOG { BINARY, DEBUG, TEXT, TIMESTAMPED-TEXT }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If BINARY, record all CONNECT characters in session log. If TEXT, strip\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
out CR, NUL, and XON/XOFF characters. DEBUG is the same as BINARY but\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
also includes Telnet negotiations on TCP/IP connections."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SESSION-LOG { BINARY, DEBUG, TEXT, TIMESTAMPED-TEXT }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If BINARY, record all CONNECT characters in session log. If TEXT, strip\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
out NUL and XON/XOFF characters. DEBUG is the same as BINARY but\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
also includes Telnet negotiations on TCP/IP connections."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SESSION-LOG { BINARY, DEBUG, TEXT, TIMESTAMPED-TEXT }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If BINARY, record all CONNECT characters in session log. If TEXT, strip\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
out CR, NUL, and XON/XOFF characters. DEBUG is the same as BINARY but\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
also includes Telnet negotiations on TCP/IP connections."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OSK
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SESSION-LOG { BINARY, DEBUG, TEXT, TIMESTAMPED-TEXT }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If BINARY, record all CONNECT characters in session log. If TEXT, strip\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
out LF, NUL and XON/XOFF characters."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef MAC
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: SET SESSION-LOG { BINARY, DEBUG, TEXT, TIMESTAMPED-TEXT }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If BINARY, record all CONNECT characters in session log. If TEXT, strip\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
out LF, NUL and XON/XOFF characters."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* MAC */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OSK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* GEMDOS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* AMIGA */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* STRATUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* datageneral */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2ORUNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSPEE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET SPEED number\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Speed for serial-port communication device specified in most recent\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
SET PORT command, in bits per second. Type SET SPEED ? for a list of\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
possible speeds."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET SPEED number\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Speed for serial-port communication device specified in most recent\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
SET LINE command, in bits per second. Type SET SPEED ? for a list of\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
possible speeds. Has no effect on job's controlling terminal."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYRECV:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyrcv));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSEND:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxysnd));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYREPT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyrpt));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSERVER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSERV:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hsetsrv));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSERVER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TNCODE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYTEL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxytel));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYTELOP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxytopt));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TNCODE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXMIT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYXMIT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hsetxmit));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXMIT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOCSETS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYUNCS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET UNKNOWN-CHAR-SET action\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
DISCARD (default) means reject any arriving files encoded in unknown\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
character sets. KEEP means to accept them anyway."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOCSETS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYWILD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxywild));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYWIND:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxywind));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYXFER:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyxfer));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2MOUSE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYMOUSE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxymouse));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2MOUSE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYALRM:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET ALARM [ { seconds, hh:mm:ss } ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Number of seconds from now, or time of day, after which IF ALARM\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
will succeed. 0, or no time at all, means no alarm."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYPROTO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyxyz));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SPEED
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYPREFIX:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET PREFIXING { ALL, CAUTIOUS, MINIMAL }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Selects the degree of control-character prefixing. Also see HELP SET CONTROL."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SPEED */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYLOGIN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET LOGIN { USERID, PASSWORD, PROMPT } <text>\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Provides access information for use by login scripts."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYTMPDIR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET TEMP-DIRECTORY [ <directory-name> ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Overrides automatic assignment of \\v(tmpdir) variable."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYTITLE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET TITLE <text>\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Sets window title to text instead of using current host/port name."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOPUSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYEDIT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET EDITOR pathname [ options ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Specifies the name of your preferred editor, plus any command-line\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
options. SHOW EDITOR displays it."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOPUSH */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef BROWSER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYBROWSE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET BROWSER [ pathname [ options ] ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Specifies the name of your preferred browser plus any command-line\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
options. SHOW BROWSER displays it. Omit pathname and options to use\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
ShellExecute."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET BROWSER [ pathname [ options ] ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Specifies the name of your preferred browser plus any command-line\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
options. SHOW BROWSER displays it."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* BROWSER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_TAPI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYTAPI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxytapi));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_TAPI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYWIN95:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxywin95));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYFUNC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hxyfunc));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_AUTHENTICATION
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYAUTH:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxyauth));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else /* CK_AUTHENTICATION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_SSL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYAUTH:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxyauth));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_SSL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_AUTHENTICATION */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef BROWSER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYFTP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET FTP [ pathname [ options ] ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Specifies the name of your ftp client, plus any command-line options.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
SHOW FTP displays it."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* BROWSER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSLEEP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET SLEEP CANCELLATION { ON, OFF }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Tells whether SLEEP (PAUSE) or WAIT commands can be interrupted from the\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
keyboard; ON by default."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYCD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxycd));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSERIAL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET SERIAL dps\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d is data length in bits, 7 or 8; p is first letter of parity; s is stop\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
bits, 1 or 2. Examples: \"set serial 7e1\", \"set serial 8n1\"."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef HWPARITY
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSTOP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET STOP-BITS { 1, 2 }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Number of stop bits to use on SET LINE connections, normally 1."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* HWPARITY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOLOCAL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYDISC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET DISCONNECT { ON, OFF }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Whether to close and release a SET LINE device automatically upon\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
disconnection; OFF = keep device open (default); ON = close and release."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOLOCAL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef STREAMING
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSTREAM:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET STREAMING { ON, OFF, AUTO }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Tells Kermit whether streaming protocol can be used during Kermit file\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
transfers. Default is AUTO, meaning use it if connection is reliable."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* STREAMING */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYRELY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET RELIABLE { ON, OFF, AUTO }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Tells Kermit whether its connection is reliable. Default is AUTO,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
meaning Kermit should figure it out for itself."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYCLEAR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET CLEAR-CHANNEL { ON, OFF, AUTO }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Tells Kermit whether its connection is transparent to all 8-bit bytes.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Default is AUTO, meaning Kermit figures it out from the connection type.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
When both sender and receiver agree channel is clear, SET PREFIXING NONE\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
is used automatically."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TLOG
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYTLOG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET TRANSACTION-LOG { BRIEF, FTP, VERBOSE }\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Selects the transaction-log format; BRIEF and FTP have one line per file;\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
FTP is compatible with FTP log. VERBOSE (the default) has more info."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TLOG */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYOPTS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: SET OPTIONS command [ switches... ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
For use with commands that have switches; sets the default switches for\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
the given command. Type SET OPTIONS ? for a list of amenable commands."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYTIMER:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxytimer));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKROOT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYROOT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxxchroot));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* XYROOT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef ANYSSH
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYSSH:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxyssh));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* ANYCMD */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef LOCUS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYLOCUS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxylocus));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* LOCUS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef KUI
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYGUI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxygui));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* KUI */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XYMATCH:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmxymatch));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
default:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Not available - \"%s\"\n",cmdbuf);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* D O H F U N C -- Give help for a function */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
dohfunc(xx) int xx; {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* int x; */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx == -3) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n Type SHOW FUNCTIONS to see a list of available functions.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type HELP FUNCTION <name> for help on a particular function.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" For function settings use HELP SET FUNCTION and SHOW SCRIPTS.\n\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx == FN_WORD) /* Long help message */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hmfword));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
switch (xx) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_IND: /* Index (of string 1 in string 2) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_RIX: /* Rindex (index from right) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f%sindex(s1,s2,n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string to look for.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s2 = string to look in.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = optional 1-based starting position, default = 1.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_RIX ? "r" : ""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
1-based position of %smost occurrence of s1 in s2, ignoring the %smost\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
(n1-1) characters in s2; returns 0 if s1 not found in s2.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_IND ? "left" : "right",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_IND ? "left" : "right"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SEARCH: /* Search for pattern */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_RSEARCH: /* Search for pattern from right */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f%ssearch(s1,s2,n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = pattern to look for.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s2 = string to look in.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = optional 1-based offset, default = 1.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_RSEARCH ? "r" : ""
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
1-based position of %smost match for s1 in s2, ignoring the %smost\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
(n1-1) characters in s2; returns 0 if no match.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_SEARCH ? "left" : "right",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_SEARCH ? "left" : "right"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" See HELP WILDCARDS for info about patterns.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_LEN: /* Length (of string) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\flength(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Length of string s1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_LIT: /* Literal (don't expand the string) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fliteral(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 literally without evaluation.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_LOW: /* Lower (convert to lowercase) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\flower(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 with uppercase letters converted to lowercase.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_MAX: /* Max (maximum) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fmaximum(n1,n2)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n2 = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The greater of n1 and n2.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_MIN: /* Min (minimum) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fminimum(n1,n2)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n2 = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The lesser of n1 and n2.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_MOD: /* Mod (modulus) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fmodulus(n1,n2)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n2 = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The remainder after dividing n1 by n2.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_EVA: /* Eval (evaluate arith expression) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fevaluate(e)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
e = arithmetic expression.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The result of evaluating the expression.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SUB: /* Substr (substring) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fsubstring(s1,n1,n2)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer, 1-based starting position, default = 1.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n2 = integer, length, default = length(s1) - n1 + 1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Substring of s1 starting at n1, length n2.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_UPP: /* Upper (convert to uppercase) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fupper(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 with lowercase letters converted to uppercase.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_REV: /* Reverse (a string) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\freverse(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 with its characters in reverse order.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_REP: /* Repeat (a string) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\frepeat(s1,n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 repeated n1 times.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_EXE: /* Execute (a macro) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fexecute(m1,a1,a2,a3,...)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
m1 = macro name.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
a1 = argument 1.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
a2 = argument 2, etc\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The return value of the macro (HELP RETURN for further info).\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_LPA: /* LPAD (left pad) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_RPA: /* RPAD (right pad) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f%cpad(s1,n1,c1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
c1 = character, default = space.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_LPA ? 'l' : 'r');
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 %s-padded with character c1 to length n1.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_LPA ? "left" : "right");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_DEF: /* Definition of a macro, unexpanded */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fdefinition(m1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
m1 = macro name.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Literal definition of macro m1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_CON: /* Contents of a variable, ditto */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fcontents(v1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
v1 = variable name such as \\%%a.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Literal definition of variable v1, evaluated one level only.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FIL: /* Next file */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fnextfile()\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Name of next file from list created by most recent \\f[r]files() or\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
\\f[r]dir()invocation, or an empty string if there are no more files in\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
the list.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FC: /* File count */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffiles(f1[,&a]) - File list.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = file specification, possibly containing wildcards.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
&a = optional name of array to assign file list to.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The number of regular files that match f1. Use with \\fnextfile().\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_CHR: /* Character (like BASIC CHR$()) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fcharacter(n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns character:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The character whose numeric code is n1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_RIG: /* Right (like BASIC RIGHT$()) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fright(s1,n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer, default = length(s1).\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The rightmost n1 characters of string s1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_LEF: /* Left (like BASIC LEFT$()) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fleft(s1,n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer, default = length(s1).\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The leftmost n1 characters of string s1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_COD: /* Code value of character */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fcode(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
c1 = character.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The numeric code of the first character in string s1, or 0 if s1 empty.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_RPL: /* Replace */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\freplace(s1,s2,s3[,n1])\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = original string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s2 = match string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s3 = replacement string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = occurrence.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 with occurrence number n1 of s2 replaced by s3.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If n1 = 0 or omitted, all occurrences are replaced.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If n1 < 0, occurrences are counted from the right.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FD: /* File date */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fdate(f1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = filename.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Creation date of file f1, format: yyyymmdd hh:mm:ss.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Modification date of file f1, format: yyyymmdd hh:mm:ss.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FS: /* File size */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fsize(f1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = filename.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Size of file f1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_VER: /* Verify */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fverify(s1,s2,n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string of characters to look for.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s2 = string to look in.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = starting position in s2.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
1-based position of first character in s2 that is not also in s1,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
or -1 if s1 is empty, or 0 if all characters in s2 are also in s1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_IPA: /* Find and return IP address */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fipaddress(s1,n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = 1-based integer starting position, default = 1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
First IP address in s1, scanning from left starting at position n1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_HEX: /* Hexify */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fhexify(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The hexadecimal representation of s1. Also see \\fn2hex().\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_UNH: /* Unhexify */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\funhexify(h1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
h1 = Hexadecimal string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The result of unhexifying s1, or nothing if s1 is not a hex string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_UNTAB: /* Untabify */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\funtabify(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The result of converting tabs in s1 to spaces assuming tab stops every\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
8 spaces.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_BRK: /* Break */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SPN: /* Span */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f%s(s1,s2,n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string to look in.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s2 = string of characters to look for.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = 1-based integer starting position, default = 1.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_BRK ? "break" : "span"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 up to the first occurrence of any character%salso in s2,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
scanning from the left starting at position n1.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_SPN ? " not " : " ");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_TRM: /* Trim */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_LTR: /* Left-Trim */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f%s(s1,s2)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string to look in.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s2 = string of characters to look for, default = blanks and tabs.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_TRM ? "trim" : "ltrim");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 with all characters that are also in s2 trimmed from the %s.\n.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
xx == FN_TRM ? "right" : "left");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_CAP: /* Capitalize */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fcapitalize(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 with its first letter converted to uppercase and the remaining\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
letters to lowercase.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Synonym: \\fcaps(s1)\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_TOD: /* Time-of-day-to-secs-since-midnite */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ftod2secs(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = time-of-day string, hh:mm:ss, 24-hour format.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Seconds since midnight.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FFN: /* Full file name */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fpathname(f1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = filename, possibly wild.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Full pathname of f1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_CHK: /* Checksum of text */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fchecksum(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
16-bit checksum of string s1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_CRC: /* CRC-16 of text */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fcrc16(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
16-bit cyclic redundancy check of string s1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_BSN: /* Basename of file */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fbasename(f1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = filename, possibly wild.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Filename f1 stripped of all device and directory information.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_CMD: /* Output of a command (cooked) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fcommand(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Output of system command s1, if any, with final line terminator stripped.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_RAW: /* Output of a command (raw) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\frawcommand(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Output of system command s1, if any.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_STX: /* Strip from right */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fstripx(s1,c1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string to look in.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
c1 = character to look for, default = \".\".\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 up to the rightmost occurrence of character c1.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_STL: /* Strip from left */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\flop(s1[,c1[,n1]])\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string to look in.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
c1 = character to look for, default = \".\".\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = occurrence of c1, default = 1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The part of s1 after the n1th leftmost occurrence of character c1.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_LOPX: /* Strip from right */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\flopx(s1,c1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string to look in.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
c1 = character to look for, default = \".\".\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = occurrence of c1, default = 1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The part of s1 after the n1th rightmost occurrence of character c1.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_STN: /* Strip n chars */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fstripn(s1,n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string to look in.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer, default = 0.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 with n1 characters removed from the right.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_STB: /* Strip enclosing brackets */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fstripb(s1[,c1[,c2]])\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = original string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
c1 = optional first character\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
c2 = optional final character.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 with the indicated enclosing characters removed. If c1 and c2 not\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
specified, any matching brackets, braces, parentheses, or quotes are\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
assumed. If c1 is given but not c2, the appropriate c2 is assumed.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if both c1 and c2 are given, they are used as-is.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Alternative format:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Include a grouping mask number in place of c1 and omit c2 to specify more\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
than one possibility at once; see \\fword() for details.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SCRN_CX: /* Screen Cursor X Pos */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fscrncurx()\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The 0-based X coordinate (column) of the Terminal screen cursor.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SCRN_CY: /* Screen Cursor Y Pos */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fscrncury()\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The 0-based Y coordinate (row) of the Terminal screen cursor.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SCRN_STR: /* Screen String */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fscrnstr(ny,nx,n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
ny = integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
nx = integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The string at Terminal-screen coordinates (nx,ny), length n1,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
blanks included. Coordinates start at 0. Default values are\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
0 for ny and nx, and line width for n1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_2HEX: /* Num to hex */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fn2hex(n1) - Number to hex\n n1 = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n The hexadecimal representation of n1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_2OCT: /* Num to hex */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fn2octal(n1) - Number to octal\n n1 = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n The octal representation of n1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef RECURSIVE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_DIR: /* Recursive directory count */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fdirectories(f1) - Directory list.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = directory specification, possibly containing wildcards.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
&a = optional name of array to assign directory list to.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The number of directories that match f1; use with \\fnextfile().\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_RFIL: /* Recursive file count */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\frfiles(f1[,&a]) - Recursive file list.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = file specification, possibly containing wildcards.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
&a = optional name of array to assign file list to.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The number of files whose names match f1 in the current or given\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
directory tree; use with \\fnextfile().\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_RDIR: /* Recursive directory count */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\frdirectories(f1) - Recursive directory list.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = directory specification, possibly containing wildcards.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
&a = optional name of array to assign directory list to.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The number of directories that match f1 in the current or given directory\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
tree. Use with \\fnextfile().\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* RECURSIVE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_DNAM: /* Directory part of a filename */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fdirname(f) - Directory part of a filename.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f = a file specification.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns directory name:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The full name of the directory that the file is in, or if the file is a\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
directory, its full name.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NORANDOM
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_RAND: /* Random number */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\frandom(n) - Random number.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = a positive integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
A random number between 0 and n-1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NORANDOM */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SPLIT: /* Split */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fsplit(s1,&a,s2,s3,n2,n3) - \
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Assign string words to an array.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = source string\n &a = array designator\n s2 = optional break set.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" s3 = optional include set.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" n2 = optional grouping mask.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" n3 = optional separator flag.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" s2, s3, n2, n3 are as in \\fword().\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" All arguments are optional; if \\&a[] already exists, it is recycled;\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if array not specified, the count is returned but no array is created.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Number of words in source string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_DTIM: /* CVTDATE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fcvtdate([date-time][,n1]) - Date/time conversion.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Converts date and/or time to standard format.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" If no date/time given, returns current date/time.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" [date-time], if given, is free-format date and/or time.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" HELP DATE for info about date-time formats.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Standard-format date and time: yyyymmdd hh:mm:ss (numeric)\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" If n1 is given:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = 1: yyyy-mmm-dd hh:mm:ss (mmm = English 3-letter month abbreviation)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = 2: dd-mmm-yyyy hh:mm:ss (ditto)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = 3: yyyymmddhhmmss (all numeric)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = 4: Day Mon dd hh:mm:ss yyyy (asctime)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Other: yyyymmdd hh:mm:dd");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_JDATE: /* DOY */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fdoy([date-time]) - Day of Year.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Converts date and/or time to day-of-year (DOY) format.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" If no date/time given, returns current date.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" [date-time], if given, is free-format date and/or time.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" HELP DATE for info about date-time formats.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns numeric string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
DOY: yyyyddd, where ddd is 1-based day number in year.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_PNCVT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fdialconvert(phone-number) - Convert phone number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Converts the given phone number for dialing according\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" to the prevailing dialing rules -- country code, area code, etc.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The dial string that would be used if the same phone number had been\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
given to the DIAL command.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_DATEJ: /* DOY2DATE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fdoy2date([doy[ time]]) - Day of Year to Date.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Converts yyyymmm to yyyymmdd\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" If time included, it is converted to 24-hour format.");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns standard date or date-time string yyyymmdd hh:mm:ss\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_MJD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fmjd([[date][ time]]) - Modified Julian Date (MJD).\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Converts date and/or time to MJD, the number of days since 17 Nov 1858.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" HELP DATE for info about date-time formats.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns: integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_MJD2:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fmjd2date(mjd) - Modified Julian Date (MJD) to Date.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Converts MJD to standard-format date.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns: yyyymmdd.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_DAY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fday([[date][ time]]) - Day of Week.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns day of week of given date as Mon, Tue, etc.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("HELP DATE for info about date-time formats.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_NDAY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fnday([[date][ time]]) - Numeric Day of Week.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns numeric day of week of given date, 0=Sun, 1=Mon, ..., 6=Sat.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("HELP DATE for info about date-time formats.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_TIME:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ftime([[date][ time]]) - Time.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns time portion of given date and/or time in hh:mm:ss format.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("If no argument given, returns current time.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("HELP DATE for info about date-time formats.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_NTIM:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fntime([[date][ time]]) - Numeric Time.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns time portion of given date and/or time as seconds since midnight.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("If no argument given, returns current time.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("HELP DATE for info about date-time formats.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_N2TIM:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fn2time(seconds) - Numeric Time to Time.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns the given number of seconds in hh:mm:ss format.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_PERM:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fpermissions(file) - Permissions of File.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef UNIX
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns permissions of given file as they would be shown by \"ls -l\".\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef VMS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns permissions of given file as they would be shown by \"dir /prot\".\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns the permissions of the given file.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* VMS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* UNIX */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_ALOOK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\farraylook(pattern,&a) - Lookup pattern in array.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
pattern = String or pattern\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" &a = array designator, can include range specifier.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The index of the first matching array element or -1 if none.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("More info:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
HELP PATTERN for pattern syntax.\n HELP ARRAY for arrays.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_TLOOK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\ftablelook(keyword,&a,[c]) - Lookup keyword in keyword table.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
pattern = String\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" keyword = keyword to look up (can be abbreviated).\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" &a = array designator, can include range specifier.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" This array must be in alphabetical order.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" c = Optional field delimiter, colon(:) by default.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
1 or greater, index of array element that uniquely matches given keyword;\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"or -2 if keyword was ambiguous, or -1 if keyword empty or not found.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Also see:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
HELP FUNC ARRAYLOOK for a similar function.\n HELP ARRAY for arrays.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_ABS: /* Absolute */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fabsolute(n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The absolute (unsigned) value of n1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef FNFLOAT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPABS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpabsolute(f1,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = floating-point number or integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The absolute (unsigned) value of f1 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPADD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpadd(f1,f2,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1,f2 = floating-point numbers or integers.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The sum of f1 and f2 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPSUB:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpsubtract(f1,f2,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1,f2 = floating-point numbers or integers.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 minus f2 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPMUL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpmultiply(f1,f2,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1,f2 = floating-point numbers or integers.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The product of f1 and f2 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPDIV:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpdivide(f1,f2,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1,f2 = floating-point numbers or integers.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 divided by f2 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPMAX:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpmaximum(f1,f2,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1,f2 = floating-point numbers or integers.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The maximum of f1 and f2 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPMIN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpminimum(f1,f2,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1,f2 = floating-point numbers or integers.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The minimum of f1 and f2 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPMOD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpmodulus(f1,f2,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1,f2 = floating-point numbers or integers.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The modulus of f1 and f2 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPPOW:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpraise(f1,f2,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1,f2 = floating-point numbers or integers.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 raised to the power f2, to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPCOS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpcosine(f1,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = floating-point number or integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The cosine of angle f1 (in radians) to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPSIN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpsine(f1,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = floating-point number or integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The sine of angle f1 (in radians) to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPTAN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffptangent(f1,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = floating-point number or integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The tangent of angle f1 (in radians) to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPEXP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpexp(f1,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = floating-point number or integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
e (the base of natural logarithms) raised to the f1 power,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPINT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpint(f1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = floating-point number or integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns integer:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The integer part of f1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPLOG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffplog10(f1,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = floating-point number or integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The logarithm, base 10, of f1 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPLN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffplogn(f1,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = floating-point number or integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The natural logarithm of f1 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPROU:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpround(f1,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = floating-point number or integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 rounded to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPSQR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ffpsqrt(f1,d)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
f1 = floating-point number or integer.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d = integer.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns floating-point number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The square root of f1 to d decimal places.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* FNFLOAT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKCHANNELIO
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FEOF:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_eof(n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
1 if channel n1 at end of file, 0 otherwise.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPOS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_pos(n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Read/write pointer of channel n1 as byte number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_NLINE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_line(n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Read/write pointer of channel n1 as line number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FILNO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_handle(n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
File %s of open file on channel n1.\n",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"handle"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"descriptor"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FSTAT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_status(n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Sum of open modes of channel n1: 1 = read; 2 = write; 4 = append, or:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
0 if not open.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FGCHAR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_getchar(n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Reads a character from channel n1 and returns it.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FGLINE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_getline(n1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Reads a line from channel n1 and returns it.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FGBLK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_getblock(n1,n2)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number, n2 = size\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Reads a block of n2 characters from channel n1 and returns it.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPCHAR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_putchar(n1,c)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number, c = character\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Writes a character to channel n1.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
1 if successful, otherwise a negative error code.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPLINE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_putline(n1,s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number, s1 = string\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Writes the string s1 to channel n1 and adds a line terminator.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns number:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" How many characters written if successful;\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Otherwise a negative error code.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FPBLK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_putblock(n1,s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = channel number, s1 = string\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Writes the string s1 to channel n1.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns number:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" How many characters written if successful;\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Otherwise a negative error code.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FERMSG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\f_errmsg([n1])\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = numeric error code, \\v(f_error) by default.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Returns the associated error message string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKCHANNELIO */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_AADUMP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\faaconvert(name,&a[,&b])\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
name = name of associative array, &a and &b = names of regular arrays.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Converts the given associative array into two regular arrays, &a and &b,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
containing the indices and values, respectively:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
How many elements were converted.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CK_KERBEROS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_KRB_TK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fkrbtickets(n)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = Kerberos version number (4 or 5).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The number of active Kerberos 4 or 5 tickets.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Resets the ticket list used by \\fkrbnextticket(n).\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_KRB_NX:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fkrbnextticket(n)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = Kerberos version number (4 or 5).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The next ticket in the Kerberos 4 or 5 ticket list that was set up by\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
the most recent invocation of \\fkrbtickets(n).\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_KRB_IV:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fkrbisvalid(n,name)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = Kerberos version number (4 or 5).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
name = a ticket name as returned by \\fkrbnextticket(n).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns number:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
1 if the ticket is valid, 0 if not valid.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
A ticket is valid if all the following conditions are true:\n\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
(i) it exists in the current cache file;\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
(ii) it is not expired;\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
(iii) it is not marked invalid (K5 only);\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
(iv) it was issued from the current IP address\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n This value can be used in an IF statement, e.g.:\n\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" if \\fkrbisvalid(4,krbtgt.FOO.BAR.EDU@FOO.BAR.EDU) ...\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_KRB_TT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fkrbtimeleft(n,name)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = Kerberos version number (4 or 5).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
name = a ticket name as returned by \\fkrbnextticket(n).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns string:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
The number of seconds remaining in the ticket's lifetime.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_KRB_FG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fkrbflags(n,name)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = Kerberos version number (4 or 5).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
name = a ticket name as returned by \\fkrbnextticket(n).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns string:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" The flags string as reported with AUTH K5 LIST /FLAGS. This string can\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
be searched for a particular flag using the \\findex() function when\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
SET CASE is ON (for case sensitive searches). Flag strings are only\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
available for K5 tickets.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CK_KERBEROS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_PATTERN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fpattern(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = string\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns string: s with any variables, etc, evaluated in the normal manner.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
For use with INPUT, MINPUT, and REINPUT to declare that a search target is\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
a pattern rather than a literal string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_HEX2N:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fhex2n(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = hexadecimal number\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns decimal equivalent.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_HEX2IP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fhex2ip(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = 8-digit hexadecimal number\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns the equivalent decimal dotted IP address.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_IP2HEX:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fip2hex(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = decimal dotted IP address\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns the equivalent 8-digit hexadecimal number.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_OCT2N:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\foct2n(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = octal number\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns decimal equivalent.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_TOB64:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\b64encode(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = string containing no NUL bytes\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns Base-64 encoding of string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_FMB64:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\b64decode(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = string in Base-64 notation\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns the decoded string or an error code if s not valid.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_RADIX:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fradix(s,n1,n2)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = number in radix n1\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns the number's representation in radix n2.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_JOIN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fjoin(&a[,s[,n1[,n2]]])\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
&a = array designator, can include range specifier.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = optional separator.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = nonzero to put grouping around elements that contain spaces;\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
see \\fword() grouping mask for values of n.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n2 = 0 or omitted to put spaces between elements; nonzero to omit them.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Returns the (selected) elements of the array joined to together,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
separated by the separator.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SUBST:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fsubstitute(s1,s2,s3)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = Source string.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s2 = List of characters to be translated.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s3 = List of characters to translate them to.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Returns: s1, with each character that is in s2 translated to the\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
corresponding character in s3. s2 and s3 can contain ASCII ranges,\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
like [a-z]. Any characters in s2 that don't have corresponding\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
characters in s3 (after range expansion) are removed from the result.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSEXP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SEXP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fsexpression(s1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = S-Expression.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Returns: The result of evaluating s1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSEXP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_CMDSTK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fcmdstack(n1,n2)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n1 = Command-stack level, 0 to \\v(cmdlevel), default \\v(cmdlevel).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n2 = Function code, 0 or 1.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" n2 = 0: name of object at stack level n1\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n2 = 1: type of object at stack level n1:\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
0 = interactive prompt\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
1 = command file\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
2 = macro\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef CKFLOAT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_DIFDATE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fdiffdates(d1,d2)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d1 = free-format date and/or time (default = NOW).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d2 = ditto.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Difference expressed as delta time:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Negative if d2 is later than d1, otherwise positive.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* CKFLOAT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_CMPDATE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fcmpdates(d1,d2)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d1 = free-format date and/or time (default = NOW).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d2 = ditto.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" 0 if d1 is equal to d2;\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
1 if d1 is later than d2;\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
-1 if d1 is earlier than d2.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_TOGMT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\futcdate(d1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
d1 = free-format date and/or time (default = NOW).\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Date-time converted to UTC (GMT) yyyymmdd hh:mm:ss.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef TCPSOCKET
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_HSTADD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\faddr2name(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = numeric IP address.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Corresponding IP hostname if found, otherwise null.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_HSTNAM:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fname2addr(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = IP host name.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Corresponding numeric IP address if found, else null.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* TCPSOCKET */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_DELSEC:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fdelta2secs(dt)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
dt = Delta time, e.g. +3d14:27:52.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" The corresponding number of seconds.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_PC_DU:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fdos2unixpath(p)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
p = string, DOS pathname.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" The argument converted to a Unix pathname.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_PC_UD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\funix2dospath(p)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
p = string, Unix pathname.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" The argument converted to a DOS pathname.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef FN_ERRMSG
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_ERRMSG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\ferrstring(n)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = platform-dependent numeric error code.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" The corresponding error string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* FN_ERRMSG */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_KWVAL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fkeywordvalue(s1,c1)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s1 = string of the form \"name=value\"\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
c1 = separator character (default separator is \"=\")\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Assigns the value, if any, to the named macro.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" If s1 contains no separator, nothing happens.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" If s1 contains a separator but no value, the macro is undefined.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" 0 on failure\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" 1 on success\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef COMMENT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SLEEP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fsleep(n)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = number of seconds\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Pauses for the given number of seconds.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns: the empty string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_MSLEEP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fmsleep(n)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
n = number of milliseconds\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Pauses for the given number of milliseconds.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Returns: the empty string.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* COMMENT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SNAME:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fshortpathname(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = file or directory name string\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Returns the short path form of the given input.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_LNAME:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\flongpathname(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = file or directory name string\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Returns the long path form of the given input.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_SNAME:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\fshortpathname(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym for \fpathname()\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_LNAME:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\flongpathname(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym for \fpathname()\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case FN_EMAIL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\femailaddress(s)\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
s = From: or Sender: header from an RFC2822-format email message\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Extracts and returns the email address.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
default:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Sorry, help not available for \"%s\"\n",cmdbuf);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOKVERBS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* D O H K V E R B -- Give help for a Kverb */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
dohkverb(xx) int xx; {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int x,i,found,button,event;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx == -3) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n Type SHOW KVERBS to see a list of available Kverbs.\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Type HELP KVERB <name> to see the current definition of a given Kverb.\n\n"
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(-9);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx < 0) return(xx);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
switch ( xx ) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* DEC VT keyboard key definitions */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_COMPOSE : /* Compose key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kcompose Compose an accented character\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_C_UNI16 : /* UCS2 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kucs2 Enter a Unicode character\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* DEC arrow keys */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UPARR : /* DEC Up Arrow key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kuparr Transmit Terminal Up Arrow sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DNARR : /* DEC Down Arrow key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdnarr Transmit Terminal Down Arrow sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_RTARR : /* DEC Right Arrow key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Krtarr Transmit Terminal Right Arrow sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_LFARR : /* DEC Left Arrow key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Klfarr Transmit Terminal Left Arrow sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_PF1 : /* DEC PF1 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kpf1,\\Kgold Transmit DEC PF1 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_PF2 : /* DEC PF2 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kpf2 Transmit DEC PF2 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_PF3 : /* DEC PF3 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kpf3 Transmit DEC PF3 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_PF4 : /* DEC PF4 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kpf4 Transmit DEC PF4 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KP0 : /* DEC Keypad 0 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkp0 Transmit DEC Keypad-0 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KP1 : /* DEC Keypad 1 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkp1 Transmit DEC Keypad-1 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KP2 : /* etc ... through 9 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkp2 Transmit DEC Keypad-2 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KP3 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkp3 Transmit DEC Keypad-3 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KP4 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkp4 Transmit DEC Keypad-4 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KP5 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkp5 Transmit DEC Keypad-5 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KP6 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkp6 Transmit DEC Keypad-6 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KP7 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkp7 Transmit DEC Keypad-7 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KP8 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkp8 Transmit DEC Keypad-8 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KP9 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkp9 Transmit DEC Keypad-9 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KPCOMA : /* DEC keypad comma */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkpcoma Transmit DEC Keypad-Comma sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KPMINUS : /* DEC keypad minus */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkpminus Transmit DEC Keypad-Minus sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KPDOT : /* DEC keypad period */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkpdot Transmit DEC Keypad-Period sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KPENTER : /* DEC keypad enter */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkpenter Transmit DEC Keypad-Enter sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* DEC Top-Rank F keys */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF1 : /* DEC F1 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf1 Transmit DEC F1 sequence for PC keyboard\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF2 : /* DEC F2 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf2 Transmit DEC F2 sequence for PC keyboard\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF3 : /* DEC F3 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf3 Transmit DEC F3 sequence for PC keyboard\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF4 : /* DEC F4 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf4 Transmit DEC F4 sequence for PC keyboard\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF5 : /* DEC F5 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf5 Transmit DEC F5 sequence for PC keyboard\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECHOME: /* DEC HOME key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdechome Transmit DEC HOME sequence for PC keyboard\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF6 : /* DEC F6 key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf6 Transmit DEC F6 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF7 : /* etc, through F20 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf7 Transmit DEC F7 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF8 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf8 Transmit DEC F8 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF9 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf9 Transmit DEC F9 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf10 Transmit DEC F10 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf11 Transmit DEC F11 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf12 Transmit DEC F12 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf13 Transmit DEC F13 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf14 Transmit DEC F14 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECHELP : /* DEC Help key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf15,\\Kdechelp Transmit DEC HELP sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECDO : /* DEC Do key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf16,\\Kdecdo Transmit DEC DO sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF17 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf17 Transmit DEC F17 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF18 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf18 Transmit DEC F18 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF19 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf19 Transmit DEC F19 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECF20 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecf20 Transmit DEC F20 sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* DEC editing keys */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECFIND : /* DEC Find key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecfind Transmit DEC FIND sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECINSERT : /* DEC Insert key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecinsert Transmit DEC INSERT HERE sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECREMOVE : /* DEC Remove key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecremove Transmit DEC REMOVE sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECSELECT : /* DEC Select key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecfselect Transmit DEC SELECT sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECPREV : /* DEC Previous Screen key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecprev Transmit DEC PREV SCREEN sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DECNEXT : /* DEC Next Screen key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdecnext Transmit DEC NEXT SCREEN sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* DEC User-Defined Keys */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF1 : /* F1 - F5 are XTERM extensions */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf1 Transmit XTERM F1 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF2 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf2 Transmit XTERM F2 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF3 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf3 Transmit XTERM F3 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF4 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf4 Transmit XTERM F4 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF5 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf5 Transmit XTERM F5 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF6 : /* DEC User Defined Key F6 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf6 Transmit DEC F6 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF7 : /* DEC User Defined Key F7 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf7 Transmit DEC F7 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF8 : /* etc ... through F20 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf8 Transmit DEC F8 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF9 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf9 Transmit DEC F9 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf10 Transmit DEC F10 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf11 Transmit DEC F11 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf12 Transmit DEC F12 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf13 Transmit DEC F13 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf14 Transmit DEC F14 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKHELP :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kudkhelp,\\Kudkf15 Transmit DEC HELP User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKDO :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kudkdo,\\Kudkf16 Transmit DEC DO User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF17 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf17 Transmit DEC F17 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF18 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf18 Transmit DEC F18 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF19 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf19 Transmit DEC F19 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UDKF20 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kudkf20 Transmit DEC F20 User Defined Key sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Emacs Keys */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_EMACS_OVER:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kemacs_overwrite Transmit EMACS Overwrite toggle command sequence\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Kermit screen-scrolling keys */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DNONE : /* Screen rollback: down one line */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdnone Screen rollback: down one line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DNSCN : /* Screen rollback: down one screen */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdnscn Screen rollback: down one screen\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UPONE : /* Screen rollback: Up one line */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kupone Screen rollback: up one line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_UPSCN : /* Screen rollback: Up one screen */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kupscn Screen rollback: up one screen\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ENDSCN : /* Screen rollback: latest screen */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kendscn Screen rollback: latest screen\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HOMSCN : /* Screen rollback: oldest screen */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khomscn Screen rollback: oldest screen\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_GO_BOOK : /* Scroll to bookmark */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kgobook Screen rollback: go to bookmark\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_GOTO : /* Scroll to line number */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kgoto Screen rollback: go to line number\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_LFONE : /* Horizontal Scroll: Left one cell */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Klfone Horizontal Scroll: Left one column\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_LFPAGE : /* Horizontal Scroll: Left one page */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Klfpage Horizontal Scroll: Left eight columns\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_LFALL :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Klfall Horizontal Scroll: Left to margin\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_RTONE : /* Horizontal Scroll: Right one cell */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Krtone Horizontal Scroll: Right one column\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_RTPAGE : /* Horizontal Scroll: Right one page */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Krtpage Horizontal Scroll: Right eight columns\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_RTALL :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Krtall Horizontal Scroll: Right to margin\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Keyboard language switching verbs */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KB_ENG : /* English keyboard mode */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkbenglish Switch to Normal (English) keyboard mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KB_HEB : /* Hebrew keyboard mode */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkbhebrew Switch to Hebrew keyboard mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KB_RUS : /* Russian keyboard mode */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkbrussian Switch to Russian keyboard mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KB_EMA : /* Emacs keyboard mode */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkbemacs Switch to EMACS keyboard mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KB_WP : /* Word Perfect 5.1 mode */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkbwp Switch to Word Perfect 5.1 keyboard mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Mark Mode actions */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_MARK_START : /* Enter Mark Mode/Start marking */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kmarkstart Mark Mode: Enter mode or Start marking\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_MARK_CANCEL : /* Exit Mark Mode - Do Nothing */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kmarkcancel Mark Mode: Cancel mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_MARK_COPYCLIP: /* Exit Mark Mode - Copy data to clipboard */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kmarkcopyclip Mark Mode: Copy marked text to clipboard\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_MARK_COPYHOST: /* Exit Mark Mode - Copy data to host */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kmarkcopyhost Mark Mode: Copy marked text to host\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_MARK_SELECT : /* Exit Mark Mode - Select */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kmarkselect Mark Mode: Place marked text into \\v(select)\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BACKSRCH : /* Search Backwards for text */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kbacksearch Search: Begin backward search for text\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_FWDSRCH : /* Search Forwards for text */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kfwdsearch Search: Begin forward search for text\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BACKNEXT : /* Search Backwards for next instance of text */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kbacknext Search: Find next instance of text backwards\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_FWDNEXT : /* Search Forwards for next instance of text */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kfwdnext Search: Find next instance of text forwards\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Miscellaneous Kermit actions */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_EXIT : /* Return to command parser */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kexit Toggle between COMMAND and CONNECT modes\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BREAK : /* Send a BREAK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kbreak Transmit BREAK signal to host\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_RESET : /* Reset emulator */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kreset Reset Terminal Emulator to user defaults\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DOS : /* Push to DOS (i.e. OS/2) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdos,\\Kos2 Push to Command Shell\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HANGUP : /* Hang up the connection */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khangup Hangup the active connection\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DUMP : /* Dump/Print current screen */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdump Dump/copy current screen to SET PRINTER device/file\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_LBREAK : /* Send a Long BREAK */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Klbreak Transmit LONG BREAK signal to host\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_NULL : /* Send a NUL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Knull Transmit NULL ('\0') character to host\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HELP : /* Pop-up help */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khelp Raise Pop-Up help display\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HOLDSCRN : /* Hold screen */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kholdscrn Pause data input during CONNECT mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_IGNORE : /* Ignore this key, don't even beep */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kignore Ignore key\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_LOGOFF : /* Turn off session logging */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Klogoff Turn off session logging (see \\Ksession)\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_LOGON : /* Turn on session logging */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Klogon Turn on session logging (see \\Ksession)\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SESSION:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksession Toggle on/off session logging to 'session.log'\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_AUTODOWN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kautodown Toggle on/off terminal autodownload.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BYTESIZE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kbytesize Toggle terminal bytesize between 7 and 8 bits.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef COMMENT
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case MODELINE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_NETHOLD : /* Put network connection on hold */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_NEXTSESS : /* Toggle to next network session */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* COMMENT */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_CURSOR_URL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kurl Treat text under cursor position as a URL\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_STATUS : /* Show status */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kstatus Toggle statusline (None, Indicator, Host Writeable)\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TERMTYPE : /* Toggle term type: text/graphics */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktermtype Toggle Terminal Type\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_PRTCTRL : /* Print Controller mode */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kprtctrl Toggle Ctrl-Print (transparent) mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_PRINTFF : /* Print formfeed */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kprintff Output Form Feed to SET PRINTER device\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_FLIPSCN : /* Flip screen */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kflipscn Reverse foreground and background colors\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DEBUG : /* Toggle debugging */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdebug Toggle Terminal Debug mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TN_SAK : /* TELNET Secure Access Key */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktn_sak TELNET: IBM Secure Access Key\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Used to request a Trusted Shell with AIX\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TN_AO : /* TELNET Cancel Output */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktn_ao TELNET: Transmit Cancel-Output request\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TN_AYT : /* TELNET Are You There */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktnayt TELNET: Transmit Are You There? request\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TN_EC : /* TELNET Erase Character */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktn_ec TELNET: Transmit Erase Character request\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TN_EL : /* TELNET Erase Line */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktn_el TELNET: Transmit Erase Line request\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TN_GA : /* TELNET Go Ahead */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktn_ga TELNET: Transmit Go Ahead request\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TN_IP : /* TELNET Interrupt Process */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktn_ip TELNET: Transmit Interrupt Process request\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TN_LOGOUT : /* TELNET Logout */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktn_logout TELNET: Transmit Do Logout Option\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TN_NAWS : /* TELNET NAWS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ktn_naws TELNET: Transmit Window Size if NAWS is active\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_PASTE : /* Paste data from clipboard */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kpaste Paste data from clipboard to host\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_CLRSCRN : /* Clear Terminal Screen */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kclearscreen Clear the Terminal screen\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_PRTAUTO : /* Print Auto mode */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kprtauto Toggle Auto-Print mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_PRTCOPY : /* Print Copy mode */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kprtcopy Toggle Copy-Print mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSWERBACK : /* Transmit Answerback String */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kanswerback Transmit answerback string to host\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SET_BOOK : /* Set Bookmark */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksetbook Set bookmark\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_QUIT : /* Quit Kermit */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kquit Hangup connection and quit kermit\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_KEYCLICK : /* Toggle Keyclick */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kkeyclick Toggle Keyclick mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_LOGDEBUG : /* Toggle Debug Log File */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Klogdebug Toggle Debug Logging to File\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_FNKEYS : /* Show Function Key Labels */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kfnkeys Display Function Key Labels\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2MOUSE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Mouse only Kverbs */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_MOUSE_CURPOS :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kmousecurpos Mouse: Move host cursor to position\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_MOUSE_MARK :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kmousemark Mouse: Mark text for selection (drag event only)\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_MOUSE_URL :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kmouseurl Mouse: Start browser with selected URL\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2MOUSE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* ANSI Function Key definitions */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif01 Transmit SCOANSI/AT386: F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif02 Transmit SCOANSI/AT386: F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif03 Transmit SCOANSI/AT386: F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif04 Transmit SCOANSI/AT386: F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif05 Transmit SCOANSI/AT386: F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif06 Transmit SCOANSI/AT386: F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif07 Transmit SCOANSI/AT386: F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif08 Transmit SCOANSI/AT386: F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif09 Transmit SCOANSI/AT386: F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif10 Transmit SCOANSI/AT386: F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif11 Transmit SCOANSI/AT386: F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif12 Transmit SCOANSI/AT386: F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif13 Transmit SCOANSI/AT386: Shift-F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif14 Transmit SCOANSI/AT386: Shift-F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif15 Transmit SCOANSI/AT386: Shift-F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF16 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif16 Transmit SCOANSI/AT386: Shift-F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF17 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif17 Transmit SCOANSI/AT386: Shift-F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF18 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif18 Transmit SCOANSI/AT386: Shift-F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF19 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif19 Transmit SCOANSI/AT386: Shift-F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF20 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif20 Transmit SCOANSI/AT386: Shift-F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF21 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif21 Transmit SCOANSI/AT386: Shift-F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF22 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif22 Transmit SCOANSI/AT386: Shift-F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF23 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif23 Transmit SCOANSI/AT386: Shift-F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF24 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif24 Transmit SCOANSI/AT386: Shift-F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF25 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif25 Transmit SCOANSI/AT386: Ctrl-F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF26 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif26 Transmit SCOANSI/AT386: Ctrl-F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF27 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif27 Transmit SCOANSI/AT386: Ctrl-F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF28 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif28 Transmit SCOANSI/AT386: Ctrl-F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF29 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif29 Transmit SCOANSI/AT386: Ctrl-F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF30 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif30 Transmit SCOANSI/AT386: Ctrl-F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF31 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif31 Transmit SCOANSI/AT386: Ctrl-F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF32 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif32 Transmit SCOANSI/AT386: Ctrl-F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF33 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif33 Transmit SCOANSI/AT386: Ctrl-F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF34 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif34 Transmit SCOANSI/AT386: Ctrl-F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF35 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif35 Transmit SCOANSI/AT386: Ctrl-F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF36 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif36 Transmit SCOANSI/AT386: Ctrl-F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF37 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif37 Transmit SCOANSI/AT386: Ctrl-Shift-F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF38 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif38 Transmit SCOANSI/AT386: Ctrl-Shift-F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF39 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif39 Transmit SCOANSI/AT386: Ctrl-Shift-F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF40 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif40 Transmit SCOANSI/AT386: Ctrl-Shift-F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF41 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif41 Transmit SCOANSI/AT386: Ctrl-Shift-F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF42 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif42 Transmit SCOANSI/AT386: Ctrl-Shift-F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF43 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif43 Transmit SCOANSI/AT386: Ctrl-Shift-F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF44 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif44 Transmit SCOANSI/AT386: Ctrl-Shift-F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF45 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif45 Transmit SCOANSI/AT386: Ctrl-Shift-F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF46 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif46 Transmit SCOANSI/AT386: Ctrl-Shift-F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF47 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif47 Transmit SCOANSI/AT386: Ctrl-Shift-F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF48 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif48 Transmit SCOANSI/AT386: Ctrl-Shift-F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF49 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif49 Transmit SCOANSI/AT386: Home\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF50 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif50 Transmit SCOANSI/AT386: Up Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF51 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif51 Transmit SCOANSI/AT386: PgUp\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF52 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif52 Transmit SCOANSI/AT386: Ctrl-Shift-Subtract\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF53 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif53 Transmit SCOANSI/AT386: Left Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF54 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif54 Transmit SCOANSI/AT386: Clear\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF55 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif55 Transmit SCOANSI/AT386: Right Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF56 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif56 Transmit SCOANSI/AT386: Shift-Add\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF57 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif57 Transmit SCOANSI/AT386: End\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF58 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif58 Transmit SCOANSI/AT386: Down Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF59 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif59 Transmit SCOANSI/AT386: PgDn\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF60 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif60 Transmit SCOANSI/AT386: Insert\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_ANSIF61 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kansif61 Transmit SCOANSI/AT386: (not named)\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* WYSE Function Keys (unshifted) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf01 Transmit WYSE 30/50/60/160: F1\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf02 Transmit WYSE 30/50/60/160: F2\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf03 Transmit WYSE 30/50/60/160: F3\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf04 Transmit WYSE 30/50/60/160: F4\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf05 Transmit WYSE 30/50/60/160: F5\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf06 Transmit WYSE 30/50/60/160: F6\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf07 Transmit WYSE 30/50/60/160: F7\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf08 Transmit WYSE 30/50/60/160: F8\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf09 Transmit WYSE 30/50/60/160: F9\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf10 Transmit WYSE 30/50/60/160: F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf11 Transmit WYSE 30/50/60/160: F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf12 Transmit WYSE 30/50/60/160: F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf13 Transmit WYSE 30/50/60/160: F13\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf14 Transmit WYSE 30/50/60/160: F14\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf15 Transmit WYSE 30/50/60/160: F15\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF16 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf16 Transmit WYSE 30/50/60/160: F16\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF17 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf17 Transmit WYSE 30/50/60/160: F17\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF18 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf18 Transmit WYSE 30/50/60/160: F18\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF19 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf19 Transmit WYSE 30/50/60/160: F19\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYF20 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyf20 Transmit WYSE 30/50/60/160: F20\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* WYSE Function Keys (shifted) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf01 Transmit WYSE 30/50/60/160: Shift-F1\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf02 Transmit WYSE 30/50/60/160: Shift-F2\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf03 Transmit WYSE 30/50/60/160: Shift-F3\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf04 Transmit WYSE 30/50/60/160: Shift-F4\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf05 Transmit WYSE 30/50/60/160: Shift-F5\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf06 Transmit WYSE 30/50/60/160: Shift-F6\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf07 Transmit WYSE 30/50/60/160: Shift-F7\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf08 Transmit WYSE 30/50/60/160: Shift-F8\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf09 Transmit WYSE 30/50/60/160: Shift-F9\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf10 Transmit WYSE 30/50/60/160: Shift-F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf11 Transmit WYSE 30/50/60/160: Shift-F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf12 Transmit WYSE 30/50/60/160: Shift-F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf13 Transmit WYSE 30/50/60/160: Shift-F13\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf14 Transmit WYSE 30/50/60/160: Shift-F14\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf15 Transmit WYSE 30/50/60/160: Shift-F15\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF16 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf16 Transmit WYSE 30/50/60/160: Shift-F16\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF17 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf17 Transmit WYSE 30/50/60/160: Shift-F17\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF18 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf18 Transmit WYSE 30/50/60/160: Shift-F18\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF19 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf19 Transmit WYSE 30/50/60/160: Shift-F19\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSF20 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysf20 Transmit WYSE 30/50/60/160: Shift-F20\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* WYSE Edit and Special Keys */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYBS :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwybs Transmit WYSE 30/50/60/160: Backspace\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYCLRLN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyclrln Transmit WYSE 30/50/60/160: Clear Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSCLRLN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysclrln Transmit WYSE 30/50/60/160: Shift-Clear Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYCLRPG :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyclrpg Transmit WYSE 30/50/60/160: Clear Page\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSCLRPG :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysclrpg Transmit WYSE 30/50/60/160: Shift-Clear Page\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYDELCHAR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwydelchar Transmit WYSE 30/50/60/160: Delete Char\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYDELLN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwydelln Transmit WYSE 30/50/60/160: Delete Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYENTER :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyenter Transmit WYSE 30/50/60/160: Enter\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYESC :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyesc Transmit WYSE 30/50/60/160: Esc\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYHOME :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyhome Transmit WYSE 30/50/60/160: Home\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSHOME :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyshome Transmit WYSE 30/50/60/160: Shift-Home\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYINSERT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyinsert Transmit WYSE 30/50/60/160: Insert\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYINSCHAR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyinschar Transmit WYSE 30/50/60/160: Insert Char\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYINSLN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyinsln Transmit WYSE 30/50/60/160: Insert Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYPGNEXT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwypgnext Transmit WYSE 30/50/60/160: Page Next\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYPGPREV :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwypgprev Transmit WYSE 30/50/60/160: Page Previous\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYREPLACE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyreplace Transmit WYSE 30/50/60/160: Replace \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYRETURN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyreturn Transmit WYSE 30/50/60/160: Return \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYTAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwytab Transmit WYSE 30/50/60/160: Tab \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSTAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwystab Transmit WYSE 30/50/60/160: Shift-Tab \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYPRTSCN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyprtscn Transmit WYSE 30/50/60/160: Print Screen \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSESC :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysesc Transmit WYSE 30/50/60/160: Shift-Esc \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSBS :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysbs Transmit WYSE 30/50/60/160: Shift-Backspace\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSENTER :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysenter Transmit WYSE 30/50/60/160: Shift-Enter\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSRETURN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysreturn Transmit WYSE 30/50/60/160: Shift-Return\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYUPARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyuparr Transmit WYSE 30/50/60/160: Up Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYDNARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwydnarr Transmit WYSE 30/50/60/160: Down Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYLFARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwylfarr Transmit WYSE 30/50/60/160: Left Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYRTARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyrtarr Transmit WYSE 30/50/60/160: Right Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSUPARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysuparr Transmit WYSE 30/50/60/160: Shift-Up Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSDNARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysdnarr Transmit WYSE 30/50/60/160: Shift-Down Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSLFARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyslfarr Transmit WYSE 30/50/60/160: Shift-Left Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSRTARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysrtarr Transmit WYSE 30/50/60/160: Shift-Right Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSEND:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwysend Transmit WYSE 30/50/60/160: Send\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_WYSSEND:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kwyssend Transmit WYSE 30/50/60/160: Shift-Send\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Data General Function Keys (unshifted) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F10 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F11 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F12 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F13 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F14 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGF15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgf01 Transmit Data General: F15 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Data General Function Keys (shifted) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf01 Transmit Data General: Shift-F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf02 Transmit Data General: Shift-F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf03 Transmit Data General: Shift-F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf04 Transmit Data General: Shift-F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf05 Transmit Data General: Shift-F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf06 Transmit Data General: Shift-F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf07 Transmit Data General: Shift-F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf08 Transmit Data General: Shift-F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf09 Transmit Data General: Shift-F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf10 Transmit Data General: Shift-F10 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf11 Transmit Data General: Shift-F11 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf12 Transmit Data General: Shift-F12 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf13 Transmit Data General: Shift-F13 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf14 Transmit Data General: Shift-F14 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSF15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgsf15 Transmit Data General: Shift-F15 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Data General Function Keys (control) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf01 Transmit Data General: Ctrl-F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf02 Transmit Data General: Ctrl-F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf03 Transmit Data General: Ctrl-F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf04 Transmit Data General: Ctrl-F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf05 Transmit Data General: Ctrl-F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf06 Transmit Data General: Ctrl-F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf07 Transmit Data General: Ctrl-F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf08 Transmit Data General: Ctrl-F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf09 Transmit Data General: Ctrl-F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf10 Transmit Data General: Ctrl-F10 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf11 Transmit Data General: Ctrl-F11 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf12 Transmit Data General: Ctrl-F12 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf13 Transmit Data General: Ctrl-F13 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf14 Transmit Data General: Ctrl-F14 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCF15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcf15 Transmit Data General: Ctrl-F15 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Data General Function Keys (control shifted) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf01 Transmit Data General: Ctrl-Shift-F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf02 Transmit Data General: Ctrl-Shift-F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf03 Transmit Data General: Ctrl-Shift-F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf04 Transmit Data General: Ctrl-Shift-F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf05 Transmit Data General: Ctrl-Shift-F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf06 Transmit Data General: Ctrl-Shift-F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf07 Transmit Data General: Ctrl-Shift-F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf08 Transmit Data General: Ctrl-Shift-F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf09 Transmit Data General: Ctrl-Shift-F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf10 Transmit Data General: Ctrl-Shift-F10 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf11 Transmit Data General: Ctrl-Shift-F11 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf12 Transmit Data General: Ctrl-Shift-F12 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf13 Transmit Data General: Ctrl-Shift-F13 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf14 Transmit Data General: Ctrl-Shift-F14 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCSF15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Kdgcsf15 Transmit Data General: Ctrl-Shift-F15 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGUPARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdguparr Transmit Data General: Up Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGDNARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgdnarr Transmit Data General: Down Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGLFARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdglfarr Transmit Data General: Left Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGRTARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgrtarr Transmit Data General: Right Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSUPARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgsuparr Transmit Data General: Shift-Up Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSDNARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgsdnarr Transmit Data General: Shift-Down Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSLFARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgslfarr Transmit Data General: Shift-Left Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSRTARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgsrtarr Transmit Data General: Shift-Right Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGERASEPAGE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgerasepage Transmit Data General: Erase Page \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGC1 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgc1 Transmit Data General: C1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGC2 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgc2 Transmit Data General: C2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGERASEEOL :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgeraseeol Transmit Data General: Erase EOL \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGC3 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgc3 Transmit Data General: C3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGC4 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgc4 Transmit Data General: C4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGCMDPRINT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgcmdprint Transmit Data General: Command Print \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGHOME :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdghome Transmit Data General: Home \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSERASEPAGE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgserasepage Transmit Data General: Erase Page \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSC1 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgsc1 Transmit Data General: Shift-C1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSC2 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgsc2 Transmit Data General: Shift-C2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSERASEEOL :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgseraseeol Transmit Data General: Shift-Erase EOL \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSC3 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgsc3 Transmit Data General: Shift-C3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSC4 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgsc4 Transmit Data General: Shift-C4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSCMDPRINT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgscmdprint Transmit Data General: Shift-Command Print\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGBS :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdgbs Transmit Data General: Backspace \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_DGSHOME :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kdshome Transmit Data General: Shift-Home \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Televideo Function Keys (unshifted) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif01 Transmit Televideo: F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif02 Transmit Televideo: F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif03 Transmit Televideo: F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif04 Transmit Televideo: F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif05 Transmit Televideo: F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif06 Transmit Televideo: F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif07 Transmit Televideo: F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif08 Transmit Televideo: F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif09 Transmit Televideo: F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif10 Transmit Televideo: F10 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif11 Transmit Televideo: F11 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif12 Transmit Televideo: F12 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif13 Transmit Televideo: F13 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif14 Transmit Televideo: F14 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif15 Transmit Televideo: F15 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIF16 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvif16 Transmit Televideo: F16 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Televideo Function Keys (shifted) */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf01 Transmit Televideo: Shift-F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf02 Transmit Televideo: Shift-F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf03 Transmit Televideo: Shift-F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf04 Transmit Televideo: Shift-F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf05 Transmit Televideo: Shift-F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf06 Transmit Televideo: Shift-F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf07 Transmit Televideo: Shift-F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf08 Transmit Televideo: Shift-F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf09 Transmit Televideo: Shift-F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf10 Transmit Televideo: Shift-F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf11 Transmit Televideo: Shift-F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf12 Transmit Televideo: Shift-F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf13 Transmit Televideo: Shift-F13\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf14 Transmit Televideo: Shift-F14\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf15 Transmit Televideo: Shift-F15\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISF16 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisf16 Transmit Televideo: Shift-F16\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Televideo Edit and Special Keys */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIBS :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvibs Transmit Televideo: Backspace \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVICLRLN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktviclrln Transmit Televideo: Clear Line \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISCLRLN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisclrln Transmit Televideo: Shift-Clear Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVICLRPG :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktviclrpg Transmit Televideo: Clear Page \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISCLRPG :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisclrpg Transmit Televideo: Shift-Clear Page\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIDELCHAR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvidelchar Transmit Televideo: Delete Char \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIDELLN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvidelln Transmit Televideo: Delete Line \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIENTER :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvienter Transmit Televideo: Enter \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIESC :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktviesc Transmit Televideo: Esc \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIHOME :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvihome Transmit Televideo: Home \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISHOME :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvishome Transmit Televideo: Shift-Home \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIINSERT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktviinsert Transmit Televideo: Insert \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIINSCHAR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktviinschar Transmit Televideo: Insert Char \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIINSLN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktviinsln Transmit Televideo: Insert Line \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIPGNEXT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvipgnext Transmit Televideo: Page Next \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIPGPREV :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvipgprev Transmit Televideo: Page Previous \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIREPLACE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvireplace Transmit Televideo: Replace \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIRETURN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvireturn Transmit Televideo: Return \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVITAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvitab Transmit Televideo: Tab \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISTAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvistab Transmit Televideo: Shift-Tab \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIPRTSCN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktviprtscn Transmit Televideo: Print Screen \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISESC :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisesc Transmit Televideo: Shift-Esc \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISBS :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisbs Transmit Televideo: Shift-Backspace \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISENTER :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisenter Transmit Televideo: Shift-Enter \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISRETURN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisreturn Transmit Televideo: Shift-Return \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIUPARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktviuparr Transmit Televideo: Up Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIDNARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvidnarr Transmit Televideo: Down Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVILFARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvilfarr Transmit Televideo: Left Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVIRTARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvirtarr Transmit Televideo: Right Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISUPARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisuparr Transmit Televideo: Shift-Up Arrow \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISDNARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisdnarr Transmit Televideo: Shift-Down Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISLFARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvislfarr Transmit Televideo: Shift-Left Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISRTARR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisrtarr Transmit Televideo: Shift-Right Arrow\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISEND:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvisend Transmit Televideo: Send\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_TVISSEND:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ktvissend Transmit Televideo: Shift-Send\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* HP Function and Edit keys */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf01 Transmit Hewlett-Packard: F1 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf02 Transmit Hewlett-Packard: F2 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf03 Transmit Hewlett-Packard: F3 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf04 Transmit Hewlett-Packard: F4 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf05 Transmit Hewlett-Packard: F5 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf06 Transmit Hewlett-Packard: F6 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf07 Transmit Hewlett-Packard: F7 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf08 Transmit Hewlett-Packard: F8 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf09 Transmit Hewlett-Packard: F9 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf10 Transmit Hewlett-Packard: F10 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf11 Transmit Hewlett-Packard: F11 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf12 Transmit Hewlett-Packard: F12 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf13 Transmit Hewlett-Packard: F13 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf14 Transmit Hewlett-Packard: F14 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf15 Transmit Hewlett-Packard: F15 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPF16 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpf16 Transmit Hewlett-Packard: F16 \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPRETURN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpreturn Transmit Hewlett-Packard: Return\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPENTER :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpenter Transmit Hewlett-Packard: Enter (keypad)\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_HPBACKTAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Khpbacktab Transmit Hewlett-Packard: Back Tab\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* Siemens Nixdorf International 97801-5xx kverbs */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_DOUBLE_0 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_00 Transmit SNI-97801-5xx: Double-Zero\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_DOUBLE_0 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_00 Transmit SNI-97801-5xx: Ctrl-Double-Zero\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_CE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_ce Transmit SNI-97801-5xx: Ctrl-CE\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_COMPOSE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_compose Transmit SNI-97801-5xx: Ctrl-Compose\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_DELETE_CHAR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_del_char Transmit SNI-97801-5xx: Ctrl-Delete Char\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_DELETE_LINE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_del_line Transmit SNI-97801-5xx: Ctrl-Delete Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_DELETE_WORD :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_del_word Transmit SNI-97801-5xx: Ctrl-Delete Word\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_CURSOR_DOWN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_dnarr Transmit SNI-97801-5xx: Ctrl-Cursor Down\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_ENDMARKE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_endmarke Transmit SNI-97801-5xx: Ctrl-End Marke\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f01 Transmit SNI-97801-5xx: Ctrl-F1\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f02 Transmit SNI-97801-5xx: Ctrl-F2\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f03 Transmit SNI-97801-5xx: Ctrl-F3\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f04 Transmit SNI-97801-5xx: Ctrl-F4\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f05 Transmit SNI-97801-5xx: Ctrl-F5\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f06 Transmit SNI-97801-5xx: Ctrl-F6\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f07 Transmit SNI-97801-5xx: Ctrl-F7\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f08 Transmit SNI-97801-5xx: Ctrl-F8\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f09 Transmit SNI-97801-5xx: Ctrl-F9\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f10 Transmit SNI-97801-5xx: Ctrl-F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f11 Transmit SNI-97801-5xx: Ctrl-F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f12 Transmit SNI-97801-5xx: Ctrl-F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f13 Transmit SNI-97801-5xx: Ctrl-F13\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f14 Transmit SNI-97801-5xx: Ctrl-F14\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f15 Transmit SNI-97801-5xx: Ctrl-F15\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F16 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f16 Transmit SNI-97801-5xx: Ctrl-F16\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F17 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f17 Transmit SNI-97801-5xx: Ctrl-F17\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F18 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f18 Transmit SNI-97801-5xx: Ctrl-F18\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_USER1 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_user1 Transmit SNI-97801-5xx: Ctrl-Key below F18\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F19 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f19 Transmit SNI-97801-5xx: Ctrl-F19\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_USER2 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_user2 Transmit SNI-97801-5xx: Ctrl-Key below F19\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F20 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f20 Transmit SNI-97801-5xx: Ctrl-F20\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_USER3 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_user3 Transmit SNI-97801-5xx: Ctrl-Key below F20\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F21 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f21 Transmit SNI-97801-5xx: Ctrl-F21\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_USER4 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_user4 Transmit SNI-97801-5xx: Ctrl-Key below F21\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_F22 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_f22 Transmit SNI-97801-5xx: Ctrl-F22\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_USER5 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_user5 Transmit SNI-97801-5xx: Ctrl-Key below F22\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_HELP :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_help Transmit SNI-97801-5xx: Ctrl-Help\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_HOME :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_home Transmit SNI-97801-5xx: Ctrl-Home\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_INSERT_CHAR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_ins_char Transmit SNI-97801-5xx: Ctrl-Insert Char\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_INSERT_LINE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_ins_line Transmit SNI-97801-5xx: Ctrl-Insert Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_INSERT_WORD :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_ins_word Transmit SNI-97801-5xx: Ctrl-Insert Word\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_LEFT_TAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_left_tab Transmit SNI-97801-5xx: Ctrl-Left Tab\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_CURSOR_LEFT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_lfarr Transmit SNI-97801-5xx: Ctrl-Cursor Left\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_MODE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_mode Transmit SNI-97801-5xx: Ctrl-Mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_PAGE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_page Transmit SNI-97801-5xx: Ctrl-Page\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_PRINT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_print Transmit SNI-97801-5xx: Ctrl-Print\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_CURSOR_RIGHT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_rtarr Transmit SNI-97801-5xx: Ctrl-Cursor Right\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_SCROLL_DOWN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_c_scroll_dn Transmit SNI-97801-5xx: Ctrl-Scroll Down\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_SCROLL_UP :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_scroll_up Transmit SNI-97801-5xx: Ctrl-Scroll Up\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_START :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_start Transmit SNI-97801-5xx: Ctrl-Start\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_CURSOR_UP :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_uparr Transmit SNI-97801-5xx: Ctrl-Cursor Up\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_C_TAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_c_tab Transmit SNI-97801-5xx: Ctrl-Tab\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_CE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_ce Transmit SNI-97801-5xx: CE\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_CH_CODE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_ch_code Toggle SNI-97801-5xx: CH.CODE function.\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_COMPOSE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_compose Transmit SNI-97801-5xx: Compose\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_DELETE_CHAR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_del_char Transmit SNI-97801-5xx: Delete Char\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_DELETE_LINE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_del_line Transmit SNI-97801-5xx: Delete Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_DELETE_WORD :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_del_word Transmit SNI-97801-5xx: Delete Word\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_CURSOR_DOWN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_dnarr Transmit SNI-97801-5xx: Cursor Down\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_ENDMARKE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_endmarke Transmit SNI-97801-5xx: End Marke\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f01 Transmit SNI-97801-5xx: F1\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f02 Transmit SNI-97801-5xx: F2\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f03 Transmit SNI-97801-5xx: F3\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f04 Transmit SNI-97801-5xx: F4\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f05 Transmit SNI-97801-5xx: F5\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f06 Transmit SNI-97801-5xx: F6\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f07 Transmit SNI-97801-5xx: F7\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f08 Transmit SNI-97801-5xx: F8\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f09 Transmit SNI-97801-5xx: F9\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f10 Transmit SNI-97801-5xx: F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f11 Transmit SNI-97801-5xx: F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f12 Transmit SNI-97801-5xx: F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f13 Transmit SNI-97801-5xx: F13\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f14 Transmit SNI-97801-5xx: F14\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f15 Transmit SNI-97801-5xx: F15\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F16 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f16 Transmit SNI-97801-5xx: F16\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F17 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f17 Transmit SNI-97801-5xx: F17\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F18 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f18 Transmit SNI-97801-5xx: F18\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_USER1 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_user1 Transmit SNI-97801-5xx: Key below F18\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F19 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f19 Transmit SNI-97801-5xx: F19\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_USER2 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_user2 Transmit SNI-97801-5xx: Key below F19\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F20 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f20 Transmit SNI-97801-5xx: F20\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_USER3 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_user3 Transmit SNI-97801-5xx: Key below F20\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F21 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f21 Transmit SNI-97801-5xx: F21\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_USER4 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_user4 Transmit SNI-97801-5xx: Key below F21\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_F22 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_f22 Transmit SNI-97801-5xx: F22\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_USER5 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_user5 Transmit SNI-97801-5xx: Key below F22\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_HELP :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_help Transmit SNI-97801-5xx: Help\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_HOME :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_home Transmit SNI-97801-5xx: Home\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_INSERT_CHAR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_ins_char Transmit SNI-97801-5xx: Insert Char\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_INSERT_LINE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_ins_line Transmit SNI-97801-5xx: Insert Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_INSERT_WORD :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_ins_word Transmit SNI-97801-5xx: Insert Word\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_LEFT_TAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_left_tab Transmit SNI-97801-5xx: Left Tab\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_CURSOR_LEFT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_lfarr Transmit SNI-97801-5xx: Cursor Left\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_MODE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_mode Transmit SNI-97801-5xx: Mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_PAGE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_page Transmit SNI-97801-5xx: Page\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_PRINT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_print Transmit SNI-97801-5xx: Print\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_CURSOR_RIGHT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_rtarr Transmit SNI-97801-5xx: Cursor Right\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_DOUBLE_0 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_00 Transmit SNI-97801-5xx: Shift-Double-Zero\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_CE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_ce Transmit SNI-97801-5xx: Shift-CE\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_COMPOSE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_compose Transmit SNI-97801-5xx: Shift-Compose\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_DELETE_CHAR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_del_char Transmit SNI-97801-5xx: Shift-Delete Char\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_DELETE_LINE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_del_line Transmit SNI-97801-5xx: Shift-Delete Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_DELETE_WORD :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_del_word Transmit SNI-97801-5xx: Shift-Delete Word\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_CURSOR_DOWN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_dnarr Transmit SNI-97801-5xx: Shift-Cursor Down\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_ENDMARKE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_endmarke Transmit SNI-97801-5xx: Shift-End Marke\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F01 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f01 Transmit SNI-97801-5xx: Shift-F1\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F02 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f02 Transmit SNI-97801-5xx: Shift-F2\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F03 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f03 Transmit SNI-97801-5xx: Shift-F3\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F04 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f04 Transmit SNI-97801-5xx: Shift-F4\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F05 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f05 Transmit SNI-97801-5xx: Shift-F5\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F06 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f06 Transmit SNI-97801-5xx: Shift-F6\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F07 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f07 Transmit SNI-97801-5xx: Shift-F7\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F08 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f08 Transmit SNI-97801-5xx: Shift-F8\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F09 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f09 Transmit SNI-97801-5xx: Shift-F9\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F10 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f10 Transmit SNI-97801-5xx: Shift-F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F11 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f11 Transmit SNI-97801-5xx: Shift-F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F12 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f12 Transmit SNI-97801-5xx: Shift-F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F13 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f13 Transmit SNI-97801-5xx: Shift-F13\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F14 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f14 Transmit SNI-97801-5xx: Shift-F14\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F15 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f15 Transmit SNI-97801-5xx: Shift-F15\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F16 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f16 Transmit SNI-97801-5xx: Shift-F16\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F17 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f17 Transmit SNI-97801-5xx: Shift-F17\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F18 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f18 Transmit SNI-97801-5xx: Shift-F18\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_USER1 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_user1 Transmit SNI-97801-5xx: Shift-Key below F18\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F19 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f19 Transmit SNI-97801-5xx: Shift-F19\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_USER2 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_user2 Transmit SNI-97801-5xx: Shift-Key below F19\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F20 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f20 Transmit SNI-97801-5xx: Shift-F20\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_USER3 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_user3 Transmit SNI-97801-5xx: Shift-Key below F20\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F21 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f21 Transmit SNI-97801-5xx: Shift-F21\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_USER4 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_user4 Transmit SNI-97801-5xx: Shift-Key below F21\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_F22 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_f22 Transmit SNI-97801-5xx: Shift-F22\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_USER5 :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_user5 Transmit SNI-97801-5xx: Shift-Key below F22\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_HELP :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_help Transmit SNI-97801-5xx: Shift-Help\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_HOME :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_home Transmit SNI-97801-5xx: Shift-Home\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_INSERT_CHAR :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_ins_char Transmit SNI-97801-5xx: Shift-Insert Char\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_INSERT_LINE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_ins_line Transmit SNI-97801-5xx: Shift-Insert Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_INSERT_WORD :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_ins_word Transmit SNI-97801-5xx: Shift-Insert Word\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_LEFT_TAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_left_tab Transmit SNI-97801-5xx: Shift-Left Tab\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_CURSOR_LEFT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_lfarr Transmit SNI-97801-5xx: Shift-Cursor Left\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_MODE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_mode Transmit SNI-97801-5xx: Shift-Mode\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_PAGE :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_page Transmit SNI-97801-5xx: Shift-Page\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_PRINT :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_print Transmit SNI-97801-5xx: Shift-Print\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_CURSOR_RIGHT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_rtarr Transmit SNI-97801-5xx: Shift-Cursor Right\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_SCROLL_DOWN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"\\Ksni_s_scroll_dn Transmit SNI-97801-5xx: Shift-Scroll Down\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_SCROLL_UP :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_scroll_up Transmit SNI-97801-5xx: Shift-Scroll Up\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_START :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_start Transmit SNI-97801-5xx: Shift-Start\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_CURSOR_UP :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_uparr Transmit SNI-97801-5xx: Shift-Cursor Up\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_S_TAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_s_tab Transmit SNI-97801-5xx: Shift-Tab\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_SCROLL_DOWN :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_scroll_dn Transmit SNI-97801-5xx: Scroll Down\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_SCROLL_UP :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_scroll_up Transmit SNI-97801-5xx: Scroll Up\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_START :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_start Transmit SNI-97801-5xx: Start\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_TAB :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_tab Transmit SNI-97801-5xx: Tab\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SNI_CURSOR_UP :
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksni_uparr Transmit SNI-97801-5xx: Cursor Up\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_ATTR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_attr Transmit BA80: Attr\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_C_KEY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_c_key Transmit BA80: C\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_CLEAR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_clear Transmit BA80: Clear\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_CMD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_cmd Transmit BA80: Cmd\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_COPY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_copy Transmit BA80: Copy\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_DEL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_del Transmit BA80: Delete\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_DEL_B:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_del_b Transmit BA80: Delete B\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_DO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_do Transmit BA80: Do\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_END:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_end Transmit BA80: End\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_ENV:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_env Transmit BA80: Env\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_EOP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_eop Transmit BA80: EOP\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_ERASE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_erase Transmit BA80: Erase\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_FMT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_fmt Transmit BA80: Format\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_HELP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_help Transmit BA80: Help\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_HOME:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_home Transmit BA80: Home\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_INS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_ins Transmit BA80: Insert\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_INS_B:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_ins_b Transmit BA80: Insert B\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_MARK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_mark Transmit BA80: Mark\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_MOVE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_move Transmit BA80: Move\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA01:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa01 Transmit BA80: PA1\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA02:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa02 Transmit BA80: PA2\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA03:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa03 Transmit BA80: PA3\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA04:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa04 Transmit BA80: PA4\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA05:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa05 Transmit BA80: PA5\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA06:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa06 Transmit BA80: PA6\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA07:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa07 Transmit BA80: PA7\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA08:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa08 Transmit BA80: PA8\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA09:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa09 Transmit BA80: PA9\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA10:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa10 Transmit BA80: PA10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA11:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa11 Transmit BA80: PA11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA12:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa12 Transmit BA80: PA12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA13:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa13 Transmit BA80: PA13\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA14:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa14 Transmit BA80: PA14\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA15:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa15 Transmit BA80: PA15\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA16:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa16 Transmit BA80: PA16\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA17:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa17 Transmit BA80: PA17\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA18:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa18 Transmit BA80: PA18\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA19:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa19 Transmit BA80: PA19\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA20:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa20 Transmit BA80: PA20\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA21:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa21 Transmit BA80: PA21\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA22:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa22 Transmit BA80: PA22\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA23:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa23 Transmit BA80: PA23\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PA24:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pa24 Transmit BA80: PA24\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PGDN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pgdn Transmit BA80: Page Down\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PGUP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pgup Transmit BA80: Page Up\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PICK:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_pick Transmit BA80: Pick\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PRINT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_print Transmit BA80: Print\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_PUT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_put Transmit BA80: Put\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_REFRESH:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_refresh Transmit BA80: Refresh \n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_RESET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_reset Transmit BA80: Reset\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_RUBOUT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_rubout Transmit BA80: Rubout\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_SAVE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_save Transmit BA80: Save\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_SOFTKEY1:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_softkey1 Transmit BA80: Softkey 1\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_SOFTKEY2:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_softkey2 Transmit BA80: Softkey 2\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_SOFTKEY3:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_softkey3 Transmit BA80: Softkey 3\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_SOFTKEY4:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_softkey4 Transmit BA80: Softkey 4\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_SOFTKEY5:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_softkey5 Transmit BA80: Softkey 5\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_SOFTKEY6:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_softkey6 Transmit BA80: Softkey 6\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_SOFTKEY7:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_softkey7 Transmit BA80: Softkey 7\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_SOFTKEY8:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_softkey8 Transmit BA80: Softkey 8\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_SOFTKEY9:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_softkey9 Transmit BA80: Softkey 9\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_BA80_UNDO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Kba80_undo Transmit BA80: Undo\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F01:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f01 Transmit IBM 31xx: F1\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F02:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f02 Transmit IBM 31xx: F2\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F03:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f03 Transmit IBM 31xx: F3\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F04:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f04 Transmit IBM 31xx: F4\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F05:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f05 Transmit IBM 31xx: F5\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F06:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f06 Transmit IBM 31xx: F6\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F07:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f07 Transmit IBM 31xx: F7\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F08:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f08 Transmit IBM 31xx: F8\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F09:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f09 Transmit IBM 31xx: F9\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F10:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f10 Transmit IBM 31xx: F10\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F11:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f11 Transmit IBM 31xx: F11\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F12:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f12 Transmit IBM 31xx: F12\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F13:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f13 Transmit IBM 31xx: F13\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F14:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f14 Transmit IBM 31xx: F14\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F15:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f15 Transmit IBM 31xx: F15\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F16:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f16 Transmit IBM 31xx: F16\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F17:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f17 Transmit IBM 31xx: F17\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F18:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f18 Transmit IBM 31xx: F18\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F19:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f19 Transmit IBM 31xx: F19\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F20:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f20 Transmit IBM 31xx: F20\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F21:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f21 Transmit IBM 31xx: F21\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F22:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f22 Transmit IBM 31xx: F22\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F23:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f23 Transmit IBM 31xx: F23\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F24:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f24 Transmit IBM 31xx: F24\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F25:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f25 Transmit IBM 31xx: F25\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F26:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f26 Transmit IBM 31xx: F26\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F27:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f27 Transmit IBM 31xx: F27\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F28:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f28 Transmit IBM 31xx: F28\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F29:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f29 Transmit IBM 31xx: F29\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F30:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f30 Transmit IBM 31xx: F30\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F31:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f31 Transmit IBM 31xx: F31\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F32:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f32 Transmit IBM 31xx: F32\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F33:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f33 Transmit IBM 31xx: F33\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F34:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f34 Transmit IBM 31xx: F34\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F35:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f35 Transmit IBM 31xx: F35\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_F36:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_f36 Transmit IBM 31xx: F36\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_PA1:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_pa1 Transmit IBM 31xx: PA1\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_PA2:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_pa2 Transmit IBM 31xx: PA2\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_PA3:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_pa3 Transmit IBM 31xx: PA3\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_RESET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_reset Transmit IBM 31xx: Reset\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_JUMP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_jump Transmit IBM 31xx: Jump\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_CLEAR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_clear Transmit IBM 31xx: Clear\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_ERASE_EOF:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_erase_eof Transmit IBM 31xx: Erase to End of Field\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_ERASE_EOP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_eop Transmit IBM 31xx: Erase to End of Page\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_ERASE_INP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_inp Transmit IBM 31xx: Erase Input Operation\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_INSERT_CHAR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_ins_char Transmit IBM 31xx: Insert Character\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_INSERT_SPACE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_ins_space Transmit IBM 31xx: Insert Space\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_DELETE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_delete Transmit IBM 31xx: Delete Character\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_INS_LN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_ins_line Transmit IBM 31xx: Insert Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_DEL_LN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_del_ln Transmit IBM 31xx: Delete Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_PRINT_LINE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_prt_line Transmit IBM 31xx: Print Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_PRINT_MSG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_prt_msg Transmit IBM 31xx: Print Message\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_PRINT_SHIFT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_prt_shift Transmit IBM 31xx: Print Shift\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_CANCEL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_cancel Transmit IBM 31xx: Cancel\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_SEND_LINE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_send_line Transmit IBM 31xx: Send Line\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_SEND_MSG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_send_msg Transmit IBM 31xx: Send Message\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_SEND_PAGE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_send_page Transmit IBM 31xx: Send Page\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_HOME:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_home Transmit IBM 31xx: Home\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_I31_BACK_TAB:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ki31_back_tab Transmit IBM 31xx: Back Tab\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_STOP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksunstop Transmit SUN Console: Stop\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_AGAIN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksunagain Transmit SUN Console: Again\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_PROPS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksunprops Transmit SUN Console: Props\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_UNDO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksunundo Transmit SUN Console: Undo\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_FRONT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksunfront Transmit SUN Console: Front\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_COPY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksuncopy Transmit SUN Console: Copy\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_OPEN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksunopen Transmit SUN Console: Open\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_PASTE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksunpaste Transmit SUN Console: Paste\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_FIND:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksunfind Transmit SUN Console: Find\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_CUT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksuncut Transmit SUN Console: Cut\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case K_SUN_HELP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\\Ksunhelp Transmit SUN Console: Help\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
break;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
default:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("No additional help available for this kverb\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* This is not the proper way to do it since it doesn't show */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* all emulations, nor does it show the special modes, but it */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* is better than nothing. */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("Current bindings:\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
found = 0;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for (i = 256; i < KMSIZE ; i++) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
con_event evt = mapkey(i);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (evt.type != kverb)
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
continue;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((evt.kverb.id & ~F_KVERB) == xx) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
found = 1;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" \\%-4d - %s\n",i,keyname(i));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef OS2MOUSE
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for ( button = 0 ; button < MMBUTTONMAX ; button++ )
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
for ( event = 0 ; event < MMEVENTSIZE ; event++ )
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ( mousemap[button][event].type == kverb ) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ( (mousemap[button][event].kverb.id & ~F_KVERB) == xx ) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
found = 1;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" Mouse - %s\n",mousename(button,event));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2MOUSE */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ( !found ) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf(" (none)\n");
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(0);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOKVERBS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* OS2 */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOXFER
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
/* D O H R M T -- Give help about REMOTE command */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
static char *hrset[] = {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: REMOTE SET parameter value",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Example: REMOTE SET FILE TYPE BINARY",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Asks the Kermit server to set the named parameter to the given value.",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Equivalent to typing the corresponding SET command directly to the other",
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
" Kermit if it were in interactive mode.", "" };
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
dohrmt(xx) int xx; {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
int x;
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx == -3) return(hmsga(hmhrmt));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if (xx < 0) return(xx);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
switch (xx) {
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZCPY:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE COPY source destination\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to copy the source file to destination.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RCOPY."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZCWD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE CD [ name ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit or FTP server to change its working directory or device.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If the device or directory name is omitted, restore the default.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RCD."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE CD [ name ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to change its working directory or device.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
If the device or directory name is omitted, restore the default.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RCD."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZDEL:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE DELETE filespec\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit or FTP server to delete the named file(s).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RDEL."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE DELETE filespec\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to delete the named file(s).\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RDEL."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZMKD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE MKDIR directory-name\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit or FTP server to create the named directory.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RMKDIR."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE MKDIR directory-name\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to create the named directory.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RMKDIR."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZRMD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE RMDIR directory-name\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit or FTP server to remove the named directory.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RRMDIR."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE RMDIR directory-name\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to remove the named directory.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RRMDIR."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZDIR:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE DIRECTORY [ filespec ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit or FTP server to provide a directory listing of the named\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
file(s) or if no file specification is given, of all files in its current\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
directory. Synonym: RDIR."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE DIRECTORY [ filespec ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to provide a directory listing of the named\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
file(s) or if no file specification is given, of all files in its current\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
directory. Synonym: RDIR."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZHLP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE HELP\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit or FTP server to list the services it provides.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RHELP."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE HELP\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to list the services it provides.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RHELP."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZHOS:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE HOST command\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Sends a command to the other computer in its own command language\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
through the Kermit server that is running on that host. Synonym: RHOST."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZKER:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE KERMIT command\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Sends a command to the remote Kermit server in its own command language.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RKERMIT."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZLGI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE LOGIN user password [ account ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Logs in to a remote Kermit server that requires you login. Note: RLOGIN\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
is NOT a synonym for REMOTE LOGIN."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZLGO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE LOGOUT\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Logs out from a remote Kermit server to which you have previously logged in."
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZMSG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE MESSAGE text\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Sends a short text message to the remote Kermit server."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZPRI:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE PRINT filespec [ options ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Sends the specified file(s) to the remote Kermit and ask it to have the\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
file printed on the remote system's printer, using any specified options.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RPRINT."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZREN:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE RENAME filespec newname\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit or FTP server to rename the file. Synonym: RRENAME."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE RENAME filespec newname\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to rename the file. Synonym: RRENAME."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZSET:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsga(hrset));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZSPA:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE SPACE [ name ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to tell you about its disk space on the current\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
disk or directory, or in the one that you name. Synonym: RSPACE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOFRILLS
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZTYP:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE TYPE file\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit or FTP server to send the named file to your screen.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RTYPE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE TYPE file\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to send the named file(s) to your screen.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RTYPE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZWHO:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE WHO [ name ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to list who's logged in, or to give information\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
about the named user. Synonym: RWHO."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOFRILLS */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifndef NOSPL
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZQUE:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: [ REMOTE ] QUERY { KERMIT, SYSTEM, USER } variable-name\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to send the value of the named variable of the\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
given type, and make it available in the \\v(query) variable. When the\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
type is KERMIT functions may also be specified as if they were variables."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZASG:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: REMOTE ASSIGN variable-name [ value ]\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Assigns the given value to the named global variable on the server.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonyms: RASG, RASSIGN."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOSPL */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZPWD:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg(
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: REMOTE PWD\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to display its current working directory.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RPWD."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
"Syntax: REMOTE PWD\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit or FTP server to display its current working directory.\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Synonym: RPWD."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
case XZXIT:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#ifdef NEWFTP
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE EXIT\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to exit (without disconnecting), or closes an FTP\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
connection. Synonym: REXIT, and (for FTP only) BYE, FTP BYE."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#else
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(hmsg("Syntax: REMOTE EXIT\n\
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
Asks the Kermit server to exit. Synonym: REXIT."));
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NEWFTP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
 
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
default:
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
if ((x = cmcfm()) < 0) return(x);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
printf("?Sorry, no help available - \"%s\"\n",cmdbuf);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
return(-9);
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
}
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOXFER */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOHELP */
Too many #ifdef configurations - cppcheck only checks 12 of 464 configurations. Use --force to check all configurations.
#endif /* NOICP */