mirror of
https://github.com/TheAlgorithms/C
synced 2025-01-06 01:52:00 +03:00
37 lines
528 B
JavaScript
37 lines
528 B
JavaScript
var indexSectionsWithContent =
|
|
{
|
|
0: "_abcdefghiklmnopqrstuvw",
|
|
1: "_abcdeghlmnpqstw",
|
|
2: "abcdfklmnoqrst",
|
|
3: "_abcdefgiklmnpqrstuv",
|
|
4: "adelmnprsvw",
|
|
5: "bcln",
|
|
6: "_abelmno",
|
|
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"
|
|
};
|
|
|