Skip to content
Snippets Groups Projects
Select Git revision
  • 79153605a469096b0df85ae6101e9fcaf51d6cac
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

textgraph.h

Blame
  • Forked from Peter Gerwinski / hp
    60 commits behind the upstream repository.
    textgraph.h 225 B
    #ifndef TEXTGRAPH_H
    #define TEXTGRAPH_H
    
    #define WIDTH 40
    #define HEIGHT 20
    
    extern void clear (char c);
    extern void put_point (int x, int y, char c);
    extern char get_point (int x, int y);
    extern void display (void);
    
    #endif