commit last state
[ppam-mpi.git] / code / src / MPI_Communication / unpack.h
CommitLineData
81923e5c
BA
1#ifndef PPAM_UNPACK_H
2#define PPAM_UNPACK_H
3
4#include "Util/types.h"
5
6// deserialize a Work_t object from a bytes string
7Work_t* unpack_work(Byte* packedWork, uint32_t nbSeriesInChunk);
8
9// deserialize a Result_t object from a bytes string
10Result_t* unpack_result(Byte* packedResult);
11
12#endif