Skip to content

Instantly share code, notes, and snippets.

View Roma37's full-sized avatar
👩‍❤️‍👩
.

Roman Karabanov Roma37

👩‍❤️‍👩
.
View GitHub Profile
@ziggi
ziggi / bmp_read.cpp
Last active January 24, 2023 15:58
bmp reader
#include <iostream>
#include <fstream>
#include "main.h"
int main(int argc, char *argv[])
{
if (argc < 2) {
std::cout << "Usage: " << argv[0] << " file_name" << std::endl;
return 0;