Skip to content

Instantly share code, notes, and snippets.

@rdeioris
Created November 9, 2017 10:36
Show Gist options
  • Save rdeioris/8aab68992923d1c3ba0df6cc2ef76d4b to your computer and use it in GitHub Desktop.
Save rdeioris/8aab68992923d1c3ba0df6cc2ef76d4b to your computer and use it in GitHub Desktop.
#include "app.h"
int app_adder(int a, int b)
{
return a + b;
}
int app_multiplier(int a, int b)
{
return a * b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment