Skip to content
Snippets Groups Projects
Select Git revision
  • 9c96b545be7b1112e7ea8a624975d47548943028
  • 2025ss default
  • 2024ss
  • 2023ws
  • 2022ws
  • 2021ws
  • 2020ws
  • 2019ws
  • 2019ss
  • 2018ws
  • 2017ws
  • 2017ss
  • 2016ws
  • 2016ss
  • 2015ss
15 results

loesung-1.2-02.c

Blame
  • 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