On 1/8/08, Michael Yang <[EMAIL PROTECTED]> wrote:
>
> Hi all:
>
> I'm starting the C++ Developer work on linux, no GUI app involved.
>
> Could you tell me what the tools you are working with?
>
> I'm trying with g++ and vim. Is there a package containing the help doc
> for the library API, like the MSDN on Windows.


Well, it all depends on what libraries/APIs you are programming against.
The OS's API is generally documented in manpages (manpages-dev).   Many
libraries are accompanied by *-doc packages letting you isntall the
documentation you need locally.  Some things (mostly tools in my experience)
is documented in info format (IIRC it's the official documentation format
for GNU packages) and if you search online you can usually find most of that
for perusing in a web browser too.

So, you might say it's a bit less organised in than in the Windows world,
but bear in mind that if you use non-Microsoft APIs you end up with a
similarly unstructured set of documentation.

/M

Reply via email to