.B hostname
The host name or IP address to connect to (TCP port 5038). If astman
-fails to connect it will exit immidiately.
+fails to connect it will exit immediately.
.SH USAGE
If \fBastman\fR has successfully cunnected to the manager port it will
to standard out.
tread2.c
Takes
- butes of cache (ncached).
+ bytes of cache (ncached).
Reads key/data pairs from standard in and looks them up
in the file hashtest.
tverify.c
* the table, we can allocate extra pages. So, an overflow page number has
* the top 5 bits indicate which split point and the lower 11 bits indicate
* which page at that split point is indicated (pages within split points are
- * numberered starting with 1).
+ * numbered starting with 1).
*/
#define SPLITSHIFT 11
(void)fprintf(stderr, "%lu pages in the file\n", mp->npages);
(void)fprintf(stderr,
- "page size %lu, cacheing %lu pages of %lu page max cache\n",
+ "page size %lu, caching %lu pages of %lu page max cache\n",
mp->pagesize, mp->curcache, mp->maxcache);
(void)fprintf(stderr, "%lu page puts, %lu page gets, %lu page new\n",
mp->pageput, mp->pageget, mp->pagenew);
/*!
* \file
- * A condensation of the pbx_config stuff, to read into exensions.conf, and provide an interface to the data there,
+ * A condensation of the pbx_config stuff, to read into extensions.conf, and provide an interface to the data there,
* for operations outside of asterisk. A huge, awful hack.
*
*/
/* --------------------------------------------------------------------
Tests the character 'coal' for being a command line option character,
- momentarrily '-'.
+ momentarily '-'.
-------------------------------------------------------------------- */
int isoptionchar (char coal)
{
/* Problem: what about i/o-file, 32? You might want a header
on that? Better ignore this case. */
break;
- case 8: /* An application musn't ask for this */
+ case 8: /* An application mustn't ask for this */
default: /* This can't happen */
assert( FALSE);
}
/* --------------------------------------------------------------------
Tests the character 'coal' for being a command line option character,
- momentarrily '/' or '-'.
+ momentarily '/' or '-'.
-------------------------------------------------------------------- */
extern int isoptionchar (char coal);
that does not start with the optionchar. The filename is copied to
newly allocated memory, a pointer to which is returned.
The argument is marked as used. Therefore repeated use of this function
- will yield a complete list of filenames on the commandline.
+ will yield a complete list of filenames on the command-line.
If malloc() fails, the function does not return.
-------------------------------------------------------------------- */
extern char *parsefilearg( int argcount, char *args[]);