9 votes

Topic deleted by author

1 comment

  1. unknown user
    Link
    C varags strike again! I love C with my whole heart, but varargs are one of the most vile, most crutch-riddled parts of the language. At this point, it feels like anyone who wants to use something...

    C varags strike again! I love C with my whole heart, but varargs are one of the most vile, most crutch-riddled parts of the language. At this point, it feels like anyone who wants to use something like varargs in C is way better off just using something like:

    void f(char *fmt, int narg, void **args)
    
    2 votes