Design Pattern Examples
Overview of object-oriented design patterns
helpers/uint32_to_binary.h
Go to the documentation of this file.
1
6
7#pragma once
8#ifndef __UINT32_TO_BINARY_H__
9#define __UINT32_TO_BINARY_H__
10
11#include <stdint.h>
12
24void uint32_to_binary(uint32_t number, char* buffer, size_t bufferSize);
25
26#endif //__UINT32_TO_BINARY_H__
void uint32_to_binary(uint32_t number, char *buffer, size_t bufferSize)
Function to convert a 32-bit unsigned integer into a string representation containing all 32 bits.