coordgen 0.2.2

A thin rust wrapper around coordgen
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __WRAPPER_H__
#define __WRAPPER_H__

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>

extern void get_coordinates(size_t n_atoms, uint8_t* atoms, size_t n_bonds, uint16_t* bonds, float* coords);

#ifdef __cplusplus
}
#endif

#endif // ifndef __WRAPPER_H__