File: nhbuf.h

package info (click to toggle)
jnethack 1.1.5-21
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 18,000 kB
  • ctags: 14,991
  • sloc: ansic: 163,971; asm: 2,412; yacc: 2,002; lex: 412; sh: 179; makefile: 58
file content (16 lines) | stat: -rw-r--r-- 167 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
  $Id:$
 */

#ifndef NHBUF_H
#define NHBUF_H

#include <sys/types.h>

typedef struct _nhbuf{
    size_t	max_size;
    size_t	size;
    char	*data;
} NHBUF;

#endif