Cloudy
Spectral Synthesis Code for Astrophysics
Loading...
Searching...
No Matches
vectorhash.h
Go to the documentation of this file.
1/* This file is part of Cloudy and is copyright (C)1978-2025 by Gary J. Ferland and
2 * others. For conditions of distribution and use see copyright notice in license.txt */
3
4#ifndef VECTORHASH_H
5#define VECTORHASH_H
6
7#include <string>
8
9// take checksum of aligned buffer
10void VectorHash(const void* key, size_t len, uint32_t seed, void* out);
11// take checksum of an already opened stream
12std::string VHstream(FILE* io);
13// take checksum of the contents of a string
14std::string VHstring(const std::string& s);
15
16#endif
void VectorHash(const void *key, size_t len, uint32_t seed, void *out)
Definition vectorhash.cpp:527
std::string VHstream(FILE *io)
Definition vectorhash.cpp:553
std::string VHstring(const std::string &s)