mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-27 20:48:48 +01:00
Fixed a small bug in hedit. If CIRCLE_UNSIGNED_INDEX is 0, then new entries wo n't save correctly. (thanks Rhade) Code cleanup of check_idling. (thanks Rhade)
31 lines
873 B
C
31 lines
873 B
C
/**
|
|
* @file hedit.h
|
|
* Oasis OLC Help Editor.
|
|
*
|
|
* Part of the core tbaMUD source code distribution, which is a derivative
|
|
* of, and continuation of, CircleMUD.
|
|
*
|
|
* Author: Steve Wolfe, Scott Meisenholder, Rhade
|
|
* All rights reserved. See license.doc for complete information.
|
|
* CircleMUD is based on DikuMUD, Copyright (C) 1990, 1991.
|
|
*
|
|
*/
|
|
#ifndef _HEDIT_H_
|
|
#define _HEDIT_H_
|
|
|
|
#include "utils.h" /* for ACMD definition */
|
|
|
|
/* Functions made externally available */
|
|
/* Utility functions */
|
|
/*
|
|
* All the following functions are declared in oasis.h
|
|
void hedit_parse(struct descriptor_data *, char *);
|
|
void hedit_string_cleanup(struct descriptor_data *, int);
|
|
ACMD(do_oasis_hedit);
|
|
*/
|
|
/* Action fuctions */
|
|
ACMD(do_helpcheck);
|
|
ACMD(do_hindex);
|
|
|
|
|
|
#endif /* _HEDIT_H_*/
|