File: readobj.h

package info (click to toggle)
aime 0.60.3-7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,016 kB
  • ctags: 5,217
  • sloc: cpp: 77,611; ansic: 3,765; sh: 2,996; makefile: 234; sed: 93
file content (15 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _READOBJ_H
#define _READOBJ_H

#include <stdio.h>
#include "errlog.h"
#include "lexer.h"
#include "entity.h"

Entity *read_ability(FILE *read_file, token_record *the_tok, 
                                 ErrLog *error_log, int build_format);
Entity *read_spell(FILE *read_file, ErrLog *error_log, int build_format);
Entity *read_skill(FILE *read_file, ErrLog *error_log, int build_format);


#endif