00001 #ifndef MYLIB_H_INCLUDED
00002 #define MYLIB_H_INCLUDED
00003
00004 #include <stdio.h>
00005 #include <stdlib.h>
00006 #include <string.h>
00007
00008
00009 extern const int N;
00010 extern const int M;
00011
00012 extern void WyswietlMacierz(int n, int m, double a[][M]);
00013 extern void ZapisMacierzy(char *NazwaPliku, int n, int m, double a[][M]);
00014 extern void OdczytMacierzy(char *NazwaPliku, int *n, int *m, double a[][M]);
00015
00016
00017 struct TLst
00018 {
00019 char Im[31],Na[31];
00020 double Ocena;
00021 };
00022
00023 extern const char separator[];
00024 extern const char sepStr[];
00025
00026 extern void readCSV(char *nazwaCSV,int *N, struct TLst Lst[]);
00027 #endif // MYLIB_H_INCLUDED