Advertisement
Guest User

Untitled

a guest
May 25th, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #define MAX_LEN 100
  4.  
  5. #ifndef _DZ5_
  6. #define _DZ5_
  7.  
  8. typedef struct lista1 {
  9. double cekanje, trajanje;
  10. char tekst [MAX_LEN];
  11. } lista_info;
  12.  
  13. typedef struct lista2 {
  14. struct lista1 *elem;
  15. struct lista2 *prethodni, *sledeci;
  16. } lista_elem;
  17.  
  18. lista_elem *unos (lista_elem *glava, const char **f);
  19.  
  20. lista_elem *obrada(lista_elem *glava);
  21.  
  22. lista_elem *dodaj(lista_elem *glava,const char **x);
  23.  
  24. void ispis(lista_elem *glava, const char **f);
  25.  
  26. #ifdef _FPS_
  27. #define FPS_NUM 25
  28.  
  29. #else
  30. #define FPS_NUM 23.976
  31. #endif
  32.  
  33. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement