Advertisement
Tugamars_PT

Untitled

May 21st, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #ifndef FUNCTIONS_H_INCLUDED
  2. #define FUNCTIONS_H_INCLUDED
  3.  
  4. #include <stdio.h>
  5.  
  6. typedef struct {
  7. int id;
  8. int acompanhante;
  9. int tipo;
  10. int hentrada;
  11. int htsaida;
  12. int servico;
  13. } TInputData;
  14.  
  15. void parseDataFile(); //ler o ficheiro e inserir dados na array com os dados de input (data_input)
  16.  
  17. void writeStatsToFile(); //calcula e insere num ficheiro de texto os dados
  18.  
  19.  
  20.  
  21.  
  22.  
  23. #endif // FUNCTIONS_H_INCLUDED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement