mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
37 lines
521 B
JavaScript
37 lines
521 B
JavaScript
var indexSectionsWithContent =
|
|
{
|
|
0: "_abcdefghiklmnopqrstuvw",
|
|
1: "_abcdeghlmnpqstw",
|
|
2: "acdfklnoqrst",
|
|
3: "_acdefgiklmnpqrstuv",
|
|
4: "adelmnprw",
|
|
5: "bln",
|
|
6: "_aelmno",
|
|
7: "acdhlpst"
|
|
};
|
|
|
|
var indexSectionNames =
|
|
{
|
|
0: "all",
|
|
1: "classes",
|
|
2: "files",
|
|
3: "functions",
|
|
4: "variables",
|
|
5: "typedefs",
|
|
6: "defines",
|
|
7: "pages"
|
|
};
|
|
|
|
var indexSectionLabels =
|
|
{
|
|
0: "All",
|
|
1: "Data Structures",
|
|
2: "Files",
|
|
3: "Functions",
|
|
4: "Variables",
|
|
5: "Typedefs",
|
|
6: "Macros",
|
|
7: "Pages"
|
|
};
|
|
|