nstd-sys 0.13.0

Cross platform general purpose C library written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef NSTD_CORE_DEF_H
#define NSTD_CORE_DEF_H
#include "../nstd.h"

/// The smallest addressable unit of memory.
typedef NSTDUInt8 NSTDByte;

/// An error code type to be returned from functions. An error code of 0 means success, while
/// anything else indicates failure.
typedef NSTDInt32 NSTDErrorCode;

#endif