2005-09-20 13:26:39 +00:00
|
|
|
/** \file builtin_help.c
|
|
|
|
|
|
|
|
Functions for printing usage information of builtin commands. This
|
|
|
|
file is automatically generated from the file builtin_help.hdr and
|
|
|
|
various help files in the doc_src directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <wchar.h>
|
2005-12-20 08:57:46 +00:00
|
|
|
#include <sys/types.h>
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "builtin_help.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
Hashtable storing the help text
|
|
|
|
*/
|
|
|
|
static hash_table_t tbl;
|
|
|
|
|
|
|
|
char *builtin_help_get( wchar_t *cmd )
|
|
|
|
{
|
|
|
|
return (char *)hash_get( &tbl, (void *)cmd );
|
|
|
|
}
|
|
|
|
|
|
|
|
void builtin_help_destroy()
|
|
|
|
{
|
|
|
|
hash_destroy( &tbl );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void builtin_help_init()
|
|
|
|
{
|
|
|
|
hash_init( &tbl, &hash_wcs_func, &hash_wcs_cmp );
|