Codebase list gtkwave / upstream/1.3.34 src / fgetdynamic.h
upstream/1.3.34

Tree @upstream/1.3.34 (Download .tar.gz)

fgetdynamic.h @upstream/1.3.34raw · history · blame

/* 
 * Copyright (c) Tony Bybell 1999.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 */

#ifndef FGET_DYNAMIC_H
#define FGET_DYNAMIC_H

#include <stdio.h>
#include <stdlib.h>
#include "alloca.h"

struct alloc_bytechain
{
char val;
struct alloc_bytechain *next;
};

char *fgetmalloc(FILE *handle);
extern int fgetmalloc_len;

#endif