Tagged Questions
0
votes
1answer
26 views
How to create ctags only for c and h files in code
I have a compiled code. If i try generation the tags using the 'usr/bin/ctags -R *', it will include all the c,h,object files etc. So it is taking lot of time and also memory. Could you please let me ...
3
votes
4answers
247 views
How to check if HTML file has correct syntax?
I'm quite new to C, though I've learned C and C# and some other minor languages. My question is: how can I check if a HTML file has correct syntax? I mean:
...
2
votes
2answers
202 views
Local function definitions are rejected by Visual Studio
I am trying to list all devices attached to my system and after searching found this code which throws up error local function definations are illegal can someone explain what its means please.
Or is ...
1
vote
0answers
167 views
LLVM/Clang-Based Symbol Lookup Tool
Can libclang or some other LLVM/Clang based tool be used to lookup symbol definitions given either a symbol name or even better a file byte-offset? I want to use this from within Emacs.
1
vote
1answer
501 views
Linux kernel tags in Emacs
So I built the linux kernel tags using the make tags command but for some reason when opening the tags file in emacs (for tag lookups) first it asks if I really want to open the file (which makes ...
1
vote
4answers
104 views
What is proper name for the WINAPI tag in a c function?
I'm having a hard time understanding what the WINAPI tag is with respect to c.
For example:
BOOL WINAPI CreateProcessA( ...);
What exactly is this WINAPI tag, does it have more formal name, and is ...
0
votes
1answer
345 views
parsing the value in between two XML tags
I know this one has been asked before, however I can't seem to find a suitable solution, so I 'll state the problem:
I have a string of characters that is similar to an XML file. It's not an XML ...