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
24
void
uint32_to_binary
(uint32_t number,
char
* buffer,
size_t
bufferSize);
25
26
#endif
//__UINT32_TO_BINARY_H__
uint32_to_binary
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.
Definition:
uint32_to_binary.c:16
c
helpers
uint32_to_binary.h
Generated on Tue Aug 29 2023 19:47:44 for Design Pattern Examples by
1.9.6