Skip to content

Instantly share code, notes, and snippets.

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