Skip to content

Instantly share code, notes, and snippets.

@barosl
Created July 26, 2015 07:26
Show Gist options
  • Save barosl/e0af4a92b2b8cabd05a7 to your computer and use it in GitHub Desktop.
Save barosl/e0af4a92b2b8cabd05a7 to your computer and use it in GitHub Desktop.
Function overloading in C
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int addi(int a, int b) {
return a + b;
}
char *adds(char *a, char *b) {
char *res = malloc(strlen(a) + strlen(b) + 1);
strcpy(res, a);
strcat(res, b);
return res;
}
#define add(a, b) _Generic(a, int: addi, char*: adds)(a, b)
int main(void) {
int a = 1, b = 2;
printf("%d\n", add(a, b)); // 3
char *c = "hello ", *d = "world";
printf("%s\n", add(c, d)); // hello world
return 0;
}
@theonewolf
Copy link

Is there a way to do stricter type checking on more than one argument? As I read this, it is only checking the type of the first argument?

@dubslow
Copy link

dubslow commented Jul 26, 2015

  1. Type checking only on one argument

  2. main leaks memory

@Benabik
Copy link

Benabik commented Jul 26, 2015

@jasiek: The Arduino IDE uses C++, so function overloading works just fine. (So do templates, but you have to define them in a .h file rather than the default extension-less file.)

@danetrata
Copy link

@KLuka
It's not good practice to not free something you've malloc'd.

@dbvz
Copy link

dbvz commented Jul 26, 2015

Still not supported by Intel C compiler though.

@jaytaylor
Copy link

@Fusion
Copy link

Fusion commented Jul 26, 2015

@dubslow Yes, main leaks memory. I realize now that github has its own "grammar police" since that was not the point of this gist.

@reverofevil
Copy link

@Fusion I'd say it's not github, but C community, as memory leaks is something to avoid even in examples that are this simple.

@spekode
Copy link

spekode commented Jul 26, 2015

DAE notice the memory leak???????????????

@tkellogg
Copy link

OMG did you guys see the memory leak?!!

@Ygrex
Copy link

Ygrex commented Aug 19, 2015

'a' gets evaluated twice

@lrocha3
Copy link

lrocha3 commented Feb 16, 2017

There is a memory leak. You allocate with malloc but you never free the allocated memory. You should fix that.

@etale-cohomology
Copy link

Who says C can't be high-level and beautiful? <3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment