File: storage.h

package info (click to toggle)
xppaut 8.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,332 kB
  • sloc: ansic: 74,690; makefile: 127; sh: 92
file content (10 lines) | stat: -rw-r--r-- 201 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#ifndef _storage_h_
#define _storage_h_

void init_alloc_info(void);
void alloc_meth(void);
void init_stor(int nrow, int ncol);
void free_storage(int ncol);
int reallocstor(int ncol,int nrow);

#endif