File: Cable.h

package info (click to toggle)
xbill 2.1-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 808 kB
  • sloc: ansic: 3,252; sh: 197; makefile: 101
file content (12 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CABLE_H
#define CABLE_H

#include "types.h"

void Cable_setup(Cable **cablep);
void Cable_draw(Cable *cable);
void Cable_update(Cable *cable);
int Cable_onspark(Cable *cable, int locx, int locy);
void Cable_reset(Cable *cable);

#endif