mirror of
https://github.com/vhaudiquet/cindex.git
synced 2025-12-18 12:16:06 +00:00
updated README, fixed search null
This commit is contained in:
@@ -14,7 +14,7 @@ This repository contains the tools used to generate a json database of functions
|
|||||||
|
|
||||||
## Using the database
|
## Using the database
|
||||||
|
|
||||||
The database can be accessed via the web hosted implementation [here]().
|
The database can be accessed via the web hosted implementation [here](https://valou3433.fr/cindex/).
|
||||||
It was generated on my personal computer, using virtual machines.
|
It was generated on my personal computer, using virtual machines.
|
||||||
|
|
||||||
## Generating a database
|
## Generating a database
|
||||||
@@ -47,7 +47,7 @@ chmod +x main.sh index.sh getlib.sh merge.sh # Add execution rights if needed
|
|||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
- Generate "stdh.sh" automatically, including : Cstd, SuS, GNU exts, BSD exts
|
- Generate "stdh.sh" automatically, including : C std, SuS, GNU exts, BSD exts
|
||||||
- MacOS indexer
|
- MacOS indexer
|
||||||
- Windows indexer (WIP, need stdh generator to generate powershell arrays....)
|
- Windows indexer (WIP, need stdh generator to generate powershell arrays....)
|
||||||
|
|
||||||
|
|||||||
@@ -50,7 +50,7 @@
|
|||||||
|
|
||||||
let func = params.function;
|
let func = params.function;
|
||||||
let search = params.search;
|
let search = params.search;
|
||||||
if (search === "") search = null;
|
if (search === "" || search === "null") search = null;
|
||||||
|
|
||||||
// Set title
|
// Set title
|
||||||
document.title = (func == null ? (header == null ? "All indexed functions" : header) : func);
|
document.title = (func == null ? (header == null ? "All indexed functions" : header) : func);
|
||||||
|
|||||||
Reference in New Issue
Block a user