Skip to content

Instantly share code, notes, and snippets.

#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int32_t add_i32(int32_t a, int32_t b)
{
int32_t result = 0;
int overflow = 0;
asm volatile (

Keybase proof

I hereby claim:

  • I am demize on github.
  • I am demize (https://keybase.io/demize) on keybase.
  • I have a public key ASA_-Ml54cD23CE8UTSBdq5zI0ojxDepb-mibzHIoUf3Lgo

To claim this, I am signing this object:

project('grim',
'c',
version: '0.1',
license: 'MIT',
default_options: ['c_std=c11']
)
cc = meson.get_compiler('c')
config = configuration_data()
config.set('PACKAGE_VERSION', meson.project_version())
demize@demibuntu$ ./wordlist 'one two 3 four five'
one
two
3
four
five
one two 3 four five