473,722 Members | 2,161 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Online "flat" ISO C resource wanted.


Can anyone recommend a good online resource listing all C keywords,
standard system calls, defines etc in a "flat" hierarchy.

I wish to set up some bindings in order to bring up "hints and tips" on
using such keywords/functions from ISO C in an IDE I am working on. So I
would bring up a function and use the current word as the search
criteria to locate an online library/faq

e.g

http://resources.c.all/malloc
http://resources.c.all/typedef
http://resources.c.all/EXIT_SUCCESS

etc

Links to any and all of your favorite online C resources appreciated.

May 31 '07 #1
15 1818
On May 30, 5:09 pm, Richard <rgr...@gmail.c omwrote:
Can anyone recommend a good online resource listing all C keywords,
standard system calls, defines etc in a "flat" hierarchy.

I wish to set up some bindings in order to bring up "hints and tips" on
using such keywords/functions from ISO C in an IDE I am working on. So I
would bring up a function and use the current word as the search
criteria to locate an online library/faq

e.g

http://resources.c.all/mallochttp://...l/EXIT_SUCCESS

etc

Links to any and all of your favorite online C resources appreciated.
http://www.dinkumware.com/manuals/

Keywords:
auto
break
case
char
const
continue
default
do
double
else
enum
extern
float
for
goto
if
int
long
register
return
short
signed
sizeof
static
struct
switch
typedef
union
unsigned
void
volatile
while

C99 adds:
inline
_Imaginary
_Complex
_Bool
restrict

May 31 '07 #2
user923005 <dc*****@connx. comwrites:
On May 30, 5:09 pm, Richard <rgr...@gmail.c omwrote:
>Can anyone recommend a good online resource listing all C keywords,
standard system calls, defines etc in a "flat" hierarchy.

I wish to set up some bindings in order to bring up "hints and tips" on
using such keywords/functions from ISO C in an IDE I am working on. So I
would bring up a function and use the current word as the search
criteria to locate an online library/faq

e.g

http://resources.c.all/mallochttp://...l/EXIT_SUCCESS

etc

Links to any and all of your favorite online C resources appreciated.

http://www.dinkumware.com/manuals/
This is a nice resource. A shame though that the functions are URL'd
based on their include file name though.

e.g

http://www.dinkumware.com/manuals/?m...tdio.html#FILE

This url would not be trivial to construct.

Where did you find the keyword list though? I didnt see them - eyes are
a bit glazed at the moment :-;
>
Keywords:
auto
break
case
May 31 '07 #3
Richard wrote:
>
Can anyone recommend a good online resource listing all C keywords,
standard system calls, defines etc in a "flat" hierarchy.

I wish to set up some bindings in order to bring up "hints and tips" on
using such keywords/functions from ISO C in an IDE I am working on. So I
would bring up a function and use the current word as the search
criteria to locate an online library/faq
The C standard specifies all that. Try:

<http://cbfalconer.home .att.net/download/n869_txt.bz2>

(and don't forget to expand the download with bzip2)

--
<http://www.cs.auckland .ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfoc us.com/columnists/423>
<http://www.aaxnet.com/editor/edit043.html>
<http://kadaitcha.cx/vista/dogsbreakfast/index.html>
cbfalconer at maineline dot net

--
Posted via a free Usenet account from http://www.teranews.com

May 31 '07 #4
On Wed, 30 May 2007 21:29:29 -0400, CBFalconer <cb********@yah oo.com>
wrote:
>Richard wrote:
>>
Can anyone recommend a good online resource listing all C keywords,
standard system calls, defines etc in a "flat" hierarchy.

I wish to set up some bindings in order to bring up "hints and tips" on
using such keywords/functions from ISO C in an IDE I am working on. So I
would bring up a function and use the current word as the search
criteria to locate an online library/faq

The C standard specifies all that. Try:

<http://cbfalconer.home .att.net/download/n869_txt.bz2>

(and don't forget to expand the download with bzip2)
I forgot to expand the download with bzip2 and instead expanded it
with WinZip 11.1 under Windows Vista and it extracted just fine.

Thanks for the link.

--
jay

http://www.microsoft.com/vista/
http://www.winzip.com/
May 31 '07 #5
On Thu, 31 May 2007 02:09:14 +0200, Richard <rg****@gmail.c omwrote:
a "flat" hierarchy.
That's either a contradiction or perhaps a tower block.

Tony
May 31 '07 #6
CBFalconer <cb********@yah oo.comwrites:
Richard wrote:
>>
Can anyone recommend a good online resource listing all C keywords,
standard system calls, defines etc in a "flat" hierarchy.

I wish to set up some bindings in order to bring up "hints and tips" on
using such keywords/functions from ISO C in an IDE I am working on. So I
would bring up a function and use the current word as the search
criteria to locate an online library/faq

The C standard specifies all that. Try:

<http://cbfalconer.home .att.net/download/n869_txt.bz2>
I don't see how that addresses what I was looking for. You snipped the
example of the format I needed to bring up the info from an IDE for some
reason.

How would you automate an IDE to open that file and find a programmers
guide to "typedef" for example?

The example I gave for what I was looking for was something like

http://xxx.yyy/c/typedef.htm
>
(and don't forget to expand the download with bzip2)
Would you like to explain how I should tie my shoelaces too?

In addition, why do you not put a proper extension on the compressed
file content so that most of us can use default applications to view the
thing? No one uses underscore followed by type definition. It is "."
(period) followed by extension type.

<signature snipped manually>
May 31 '07 #7
Tony Mc <af***@btintern et.comwrites:
On Thu, 31 May 2007 02:09:14 +0200, Richard <rg****@gmail.c omwrote:
>a "flat" hierarchy.

That's either a contradiction or perhaps a tower block.

Tony
You're quite right - when typing I couldn't think of any other. But I
think flat hierarchies do exist. Anyway, the examples should have
clarified :)
May 31 '07 #8
Richard wrote:
CBFalconer <cb********@yah oo.comwrites:
>Richard wrote:
>>>
Can anyone recommend a good online resource listing all C keywords,
standard system calls, defines etc in a "flat" hierarchy.

I wish to set up some bindings in order to bring up "hints and
tips" on using such keywords/functions from ISO C in an IDE I am
working on. So I would bring up a function and use the current
word as the search criteria to locate an online library/faq

The C standard specifies all that. Try:

<http://cbfalconer.home .att.net/download/n869_txt.bz2>

I don't see how that addresses what I was looking for. You snipped
the example of the format I needed to bring up the info from an IDE
for some reason.

How would you automate an IDE to open that file and find a
programmers guide to "typedef" for example?
If you read the standard you will have some idea of the
capabilities (and limitations) of the C language. There are very
few limitations, rather constraints. With an adequate knowledge of
the language you can then write your own utilities, list the
keywords, etc. They are all in the standard.

--
<http://www.cs.auckland .ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfoc us.com/columnists/423>
<http://www.aaxnet.com/editor/edit043.html>
<http://kadaitcha.cx/vista/dogsbreakfast/index.html>
cbfalconer at maineline dot net

--
Posted via a free Usenet account from http://www.teranews.com

May 31 '07 #9
CBFalconer <cb********@yah oo.comwrites:
Richard wrote:
>CBFalconer <cb********@yah oo.comwrites:
>>Richard wrote:

Can anyone recommend a good online resource listing all C keywords,
standard system calls, defines etc in a "flat" hierarchy.

I wish to set up some bindings in order to bring up "hints and
tips" on using such keywords/functions from ISO C in an IDE I am
working on. So I would bring up a function and use the current
word as the search criteria to locate an online library/faq

The C standard specifies all that. Try:

<http://cbfalconer.home .att.net/download/n869_txt.bz2>

I don't see how that addresses what I was looking for. You snipped
the example of the format I needed to bring up the info from an IDE
for some reason.

How would you automate an IDE to open that file and find a
programmers guide to "typedef" for example?

If you read the standard you will have some idea of the
capabilities (and limitations) of the C language. There are very
few limitations, rather constraints. With an adequate knowledge of
the language you can then write your own utilities, list the
keywords, etc. They are all in the standard.
Did you even try to read and understand my request?

I am looking for a resource that I can bring up in a context sensitive
manner in an IDE.

I know what the standard is. I know where I can find it. I know how to
open a compressed file.

Do try and *read* the request. You can not blindly throw the "standard"
is everyones face.. It might keep you fascinated in the bathroom but
its not necessarily the best resource for real life, live programming
jobs using a real IDE on a real code base.
>
--
<http://www.cs.auckland .ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfoc us.com/columnists/423>
<http://www.aaxnet.com/editor/edit043.html>
<http://kadaitcha.cx/vista/dogsbreakfast/index.html>
cbfalconer at maineline dot net
--
May 31 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3929
by: matt | last post by:
I have compiled some code, some written by me, some compiled from various sources online, and basically i've got a very simple flat file photo gallery. An upload form, to upload the photos and give them a caption, storing the caption and filename in a text file. It's a bit buggy when removing the photos and captions from the file, and also in displaying them on the delete page. you can see it in action at www.4am.com.au/gallery/upload.php...
11
14255
by: Nicolas Girard | last post by:
Hi, Forgive me if the answer is trivial, but could you tell me how to achieve the following: {k1:,k2:v3,...} --> ,,,...] The subtle point (at least to me) is to "flatten" values that are lists. Thanks in advance,
3
1208
by: Tom | last post by:
I have a poitionally delimited flat file (.txt) with large records being prepared for uploading to a mainframe. I need to make sure that any invalid characters within fields are translated into spaces. It seems as though RegEx might be most appropriate for this. Does anyone know the RegEx syntax?
2
15603
by: Simon Verona | last post by:
If I have a combobox set enabled=false then by default it will have dark grey text on a grey background. I want it to show as blue on white. I'm trying code such as : combobox.enabled=false combobox.backcolor=color.white combobox.forecolor=color.blue This sets it to dark grey text on a white background.
22
12982
by: Alan Silver | last post by:
Hello, I am updating some old web pages, and have come across a problem. I have some tables where the opening tag looks like... <table border="1" bordercolor="#ffffff"> which gives a nice flat border around the table in IE, and a fairly unpleasant (IMO) 3D-effect border in Firefox.
3
2755
by: R. P. | last post by:
Subject: XSLT to transform a flat XML file into a structured text file I have an XML file that lists the PDF file segment names and titles of a larger document and looks something like this: <DOCUMENT> ...... ...... some lead elements ...... <SEGMENT_LIST>
6
2271
by: Peter | last post by:
Greetings, I'm having trouble deciding on whether to go with a flat file or DB driven architecture for a wee personal website. I'd like to be able to update HTML files online and this is my only requirement. Flat Files: advantage: attach some PHP code at the top of each file that allows the file to be opened and edited disadvantage: the files would have to be writeable
1
7724
by: gelangov | last post by:
I am sorry, I am posting this message again, since I did not get any reply. I want to export a table into a "fixed width" file using SQL 2005 import export wizard. This is the version I have: SQL Server 2005 - 9.00.2047.00
0
8739
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9384
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9238
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9157
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8052
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6681
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5995
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
2602
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2147
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.