Files
email-tracker/external/duckdb/extension/tpch/dbgen/include/dbgen/rng64.h
2025-10-24 19:21:19 -05:00

19 lines
544 B
C

/*
* Copyright owned by the Transaction Processing Performance Council.
*
* A copy of the license is included under extension/tpch/dbgen/LICENSE
* in this repository.
*
* You may not use this file except in compliance with the License.
*
* THE TPC SOFTWARE IS AVAILABLE WITHOUT CHARGE FROM TPC.
*/
#pragma once
#include "dbgen/config.h"
#include "dbgen/dss.h"
DSS_HUGE AdvanceRand64(DSS_HUGE nSeed, DSS_HUGE nCount);
void dss_random64(DSS_HUGE *tgt, DSS_HUGE nLow, DSS_HUGE nHigh, seed_t *seed);
DSS_HUGE NextRand64(DSS_HUGE nSeed);