Place the copyright notice within the win/curses files as confirmed by the original curses port author on November 28, 2018.
15 lines
423 B
C
15 lines
423 B
C
/* NetHack 3.6 cursinvt.h */
|
|
/* Copyright (c) Karl Garrison, 2010. */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
/* 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" -*-*/
|
|
|
|
#ifndef CURSINVT_H
|
|
# define CURSINVT_H
|
|
|
|
|
|
/* Global declarations */
|
|
|
|
void curses_update_inv(void);
|
|
|
|
#endif /* CURSINVT_H */
|