File: functions.h

package info (click to toggle)
modeline 0.6.5-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 340 kB
  • ctags: 66
  • sloc: sh: 1,965; ansic: 710; makefile: 57
file content (18 lines) | stat: -rw-r--r-- 301 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _FUNCS_H
  #define _FUNCS_H

  void Die(const char *, ...);
  void Logo();
  void Warning();
  void Usage();
  
  int  CheckArgs(int, char **);
  int  ReadFile(const char *);
  
  int  GetRatio(const char *);
  int  GetMemory(const char *);
  int  GetVirtX(int);
  
  int  getint();
  
#endif