Skip to content

Instantly share code, notes, and snippets.

View AdrianCert's full-sized avatar
🎯
Focusing

Panaintescu Adrian AdrianCert

🎯
Focusing
View GitHub Profile
#include <iostream>
#include <cstdlib>
class Node
{
public:
Node* next;
int data;
};
@AdrianCert
AdrianCert / ACSO_funtion.cpp
Last active January 8, 2024 14:42
ACSO fuctions: transcript between c and asm
/**
* @brief ACSO fuctions: transcript between c and asm
*
* @copyright 2020 ACSO transcript
* @author Adrian Panaintescu <adrian.cert@gmail.com>
*
* @details Simple functions written in cpp and "asm" organized on namespace, being available both variants as language
*
* @file
*