C function to get a symbol from the current process
npm install get-symbol-from-current-process-hget-symbol-from-current-process-h
=================================






The information presented below is specific to usage for building with npm and gyp.
Installation
------------
Install with npm:
`` bash`
$ npm install get-symbol-from-current-process-h
Usage
-----
In your binding.gyp:
`python`
'include_dirs': ["
(Just have " somewhere in that list, ok?)
In your C code:
`c
#include
void* sym = get_symbol_from_current_process("foobar");
``