-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrate_var.c
More file actions
33 lines (29 loc) · 724 Bytes
/
rate_var.c
File metadata and controls
33 lines (29 loc) · 724 Bytes
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
// Programmer :
// Created :
// Purpose:
//
//
// Modifications:
// Initial Date Short Description
// <none>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include"output.h"
int rate_var(char **filenames, int file_num){
// ---------------------------------------------------
// Created :
// Purpose:
//
//
// Parameters :
// Returns :
// Side-effects :
/*after you finish evaluate the files
rememeber to use function fill_var_summary to record the summary of your evaluation
and use flag_code to flag the improper code
these two functions are in output.c, check them out!
and modify it if you want!*/
printf("rate_var called\n");
return 1;
}