mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
873 B
C
35 lines
873 B
C
4 years ago
|
/**
|
||
|
*
|
||
|
* \section COPYRIGHT
|
||
|
*
|
||
|
* Copyright 2013-2020 Software Radio Systems Limited
|
||
|
*
|
||
|
* By using this file, you agree to the terms and conditions set
|
||
|
* forth in the LICENSE file which can be found at the top level of
|
||
|
* the distribution.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef SRSLTE_PRIMES_H
|
||
|
#define SRSLTE_PRIMES_H
|
||
|
|
||
|
#include "srslte/config.h"
|
||
|
#include <stdint.h>
|
||
|
|
||
|
/**
|
||
|
* @brief Finds the smallest prime number greater than n
|
||
|
* @param[in] n Provide the number
|
||
|
* @return A prime number below 1193, SRSLTE_ERROR code otherwise
|
||
|
*/
|
||
|
SRSLTE_API int srslte_prime_greater_than(uint32_t n);
|
||
|
|
||
|
/**
|
||
|
* @brief Finds the biggest prime number lesser than n
|
||
|
* @attention the maximum prime number it can return is 1193
|
||
|
* @param[in] n Provide the number
|
||
|
* @return A prime number below 1193, SRSLTE_ERROR code otherwise
|
||
|
*/
|
||
|
SRSLTE_API int srslte_prime_lower_than(uint32_t n);
|
||
|
|
||
|
#endif // SRSLTE_PRIMES_H
|