leaky_bucket.h 654 B

1234567891011121314151617181920212223242526
  1. /*!
  2. *************************************************************************************
  3. * \file leaky_bucket.h
  4. *
  5. * \brief
  6. * Header for Leaky Buffer parameters
  7. *
  8. * \author
  9. * Main contributors (see contributors.h for copyright, address and affiliation details)
  10. * - Shankar Regunathan <[email protected]>
  11. *************************************************************************************
  12. */
  13. #ifndef _LEAKY_BUCKET_H_
  14. #define _LEAKY_BUCKET_H_
  15. #include "global.h"
  16. #ifdef _LEAKYBUCKET_
  17. // Leaky Bucket functions
  18. unsigned long GetBigDoubleWord(FILE *fp);
  19. void calc_buffer(InputParameters *p_Inp);
  20. #endif
  21. #endif