Initial commit
[yaffs-website] / node_modules / node-sass / src / libsass / docs / api-importer-internal.md
1 ```C
2 // External import entry
3 struct Sass_Import {
4   char* imp_path; // path as found in the import statement
5   char *abs_path; // path after importer has resolved it
6   char* source;
7   char* srcmap;
8   // error handling
9   char* error;
10   size_t line;
11   size_t column;
12 };
13
14 // Struct to hold importer callback
15 struct Sass_Importer {
16   Sass_Importer_Fn importer;
17   double           priority;
18   void*            cookie;
19 };
20 ```