File: dfw.c

package info (click to toggle)
xshipwars 1.32-5
  • links: PTS
  • area: main
  • in suites: potato
  • size: 17,176 kB
  • ctags: 6,357
  • sloc: ansic: 157,152; makefile: 226; sh: 75
file content (30 lines) | stat: -rw-r--r-- 583 bytes parent folder | download | duplicates (2)
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
#include <stdio.h>
#include <malloc.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>

#include "../include/os.h"
#include "../include/strexp.h"
#include "../include/prochandle.h"
#include "../include/fio.h"
#include "../include/df.h"


/*
 *	Returns a dynamically allocated array of device listings.
 *	The number of device listings allocated will be indicated
 *	by total.
 */
df_stat_struct **DiskFreeGetListing(int *total)
{
	return(NULL);
}


void DiskFreeDeleteListing(df_stat_struct **df_stat, int total)
{
	return;
}