File: api-function-internal.md

package info (click to toggle)
golang-github-bep-golibsass 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,808 kB
  • sloc: cpp: 30,398; ansic: 848; sh: 662; makefile: 340; perl: 56
file content (8 lines) | stat: -rw-r--r-- 164 bytes parent folder | download | duplicates (12)
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;
};
```