1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
/*
* display.c - all screen handling functions for the picture option of the
* file system defragmenter.
*
* Copyright (C) 1997 Stephen Tweedie <sct@dcs.ed.ac.uk>
*/
#include <stdlib.h>
#include <stdarg.h>
#include <unistd.h>
#include <stdio.h>
#include "display.h"
int voyer_mode = 0;
void _die(char *last_words)
{
fprintf(stderr,last_words);
exit(1);
}
void stat_line(const char *fmt, ...)
{
char s[256];
va_list args;
va_start(args,fmt);
vsprintf(s,fmt,args);
va_end(args);
puts(s);
}
void init_screen(ulong blocks)
{
}
void done_screen(int wait_key)
{
}
void add_comment(char *text)
{
puts(text);
}
void clear_comments(void)
{
}
void display_comments(char *title)
{
}
void display_legend(ushort attr)
{
}
void set_attr(ulong block, ushort attr)
{
}
void clear_attr(ushort attr)
{
}
void show_cell(int i)
{
}
void update_display(void)
{
}
void display_map(void)
{
}
|