Welcome to mirror list, hosted at ThFree Co, Russian Federation.

api-function-internal.md « docs « libsass « src « node-sass « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69d81d04d1d5e204d2ccc1454ba5aec20f2680b6 (plain)
1
2
3
4
5
6
7
8
```C
// Struct to hold custom function callback
struct Sass_Function {
  const char*      signature;
  Sass_Function_Fn function;
  void*            cookie;
};
```