justinhj's profile picture

Functional[Justin]

Principal Software Engineer. Streaming data at scale. Generative AI. Functional Programming. Neovim. Emacs.

  • All Posts
  • Popular Posts
  • YouTube Channel
  • Speaking Events
  • Privacy

Posts about 'C'

  • Dec 7, 2007

    C: Passing on variadic function arguments to another function

    I needed to do this today, and it took me a while to google it, so here is complete sample showing how it's done:// How to pass a variadic argument...

    c c++
  • Oct 24, 2007

    C and C++ function pointers

    I came across a great page for C and C++ function pointers. It includes the syntax for how you do most things you would ever do with them. An ideal...

    c c++
  • Sep 11, 2007

    Adding C++ class names to a function name

    I use this elisp code to add a C++ class name to a line such as:void getNameRawString(char *string);automatically becomes ...void SomeClassName::getNameRawString(char *string);This is useful as you can copy a bunch...

    c c++ elisp