15 lines
427 B
C
15 lines
427 B
C
/* vim:set cin ft=c sw=4 sts=4 ts=8 et ai cino=Ls\:0t0(0 : -*- mode:c;fill-column:80;tab-width:8;c-basic-offset:4;indent-tabs-mode:nil;c-file-style:"k&r" -*-*/
|
|
/* NetHack 3.7 cursinvt.h */
|
|
/* Copyright (c) Fredrik Ljungdahl, 2017. */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef CURSINVT_H
|
|
# define CURSINVT_H
|
|
|
|
|
|
/* Global declarations */
|
|
|
|
void curses_update_inv(void);
|
|
|
|
#endif /* CURSINVT_H */
|