Initial community commit

This commit is contained in:
Jef
2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit 20d28e80a5
16810 changed files with 4640254 additions and 2 deletions

View File

@ -0,0 +1,26 @@
/*!
*************************************************************************************
* \file leaky_bucket.h
*
* \brief
* Header for Leaky Buffer parameters
*
* \author
* Main contributors (see contributors.h for copyright, address and affiliation details)
* - Shankar Regunathan <shanre@microsoft.com>
*************************************************************************************
*/
#ifndef _LEAKY_BUCKET_H_
#define _LEAKY_BUCKET_H_
#include "global.h"
#ifdef _LEAKYBUCKET_
// Leaky Bucket functions
unsigned long GetBigDoubleWord(FILE *fp);
void calc_buffer(InputParameters *p_Inp);
#endif
#endif