mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-24 06:12:27 +00:00
finish intellisense support and sync with upstream
This commit is contained in:
commit
ec9bfd8c56
221 changed files with 2360 additions and 1439 deletions
|
@ -3,17 +3,21 @@
|
|||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
struct JavadownTag {
|
||||
char *tag;
|
||||
char *text;
|
||||
};
|
||||
|
||||
struct JavadownTags {
|
||||
size_t n;
|
||||
struct JavadownTag * p;
|
||||
};
|
||||
|
||||
struct Javadown {
|
||||
bool isfileoverview;
|
||||
char *title;
|
||||
char *text;
|
||||
struct JavadownTags {
|
||||
size_t n;
|
||||
struct JavadownTag {
|
||||
char *tag;
|
||||
char *text;
|
||||
} * p;
|
||||
} tags;
|
||||
struct JavadownTags tags;
|
||||
};
|
||||
|
||||
struct Javadown *ParseJavadown(const char *, size_t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue