Skip to content

Instantly share code, notes, and snippets.

@alfiecg24
alfiecg24 / pongoos_bitmap.c
Created January 18, 2024 16:43
View a bitmap logo from pongoOS
#include <stdio.h> /* printf */
#include <string.h> /* strcat */
#include <stdlib.h> /* strtol */
#include <libkern/OSByteOrder.h> /* OSSwapInt32 */
void printInBinary(long num, int bit)
{
if (bit >= 4 * sizeof(num))
{
return;