looking for fat32 source [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for open source code for implementing fat32 in C or C++.I thought It would be easy to find several online but it appears to be evading me. I don't have a problem with GPL or any other open source license.

Look at fs/fat directory in the Linux kernel sources for a Linux implementation.

Related

Distributed computing framework in c/c++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking for a way to make distributed computing over a network (lan). Is there any good framework or a library for this purpose in C/C++.
Take a look at MPI.
Yes. Have you looked at MPI via e.g. Open MPI ?

RELAX NG C++ Code Generator? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Are there any open source RELAX NG C++ code generator?
Thanks.
I know of none for RELAX NG. However, if you can bring yourself to generate or convert your schema files as XML Schema, then it would be worthwhile to take a look at the C++ code generators from CodeSynthesis. They are GPLv2 open source, with proprietary licenses also available.
http://www.codesynthesis.com/products/

Compiling/Debugging LZMA [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I need to compile the C++ implementation of LZMA (7Z). Does anybody know how to do that? where should I download it from?
Thanks so much in advance.
Get LZMA SDK, read lzma.txt and take a look at LzmaUtil.c if you don't like C there is some C++ sources there too.

StyleCop for C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I would like to ask do You know any programs similar to StyleCop but for C++?
See A free tool to check C/C++ source code against a set of coding standards?. This looks to be what you are after, although I don't know the full capability of the StyleCop tool.

Tools to view/diagram function-call hierarchies for C or C++ source files in OSX [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Are there any good source-code analyses tools for OSX. I am particularly interested in tools that are capable of diagramming function-call hierarchies for C and C++ source files.
You might take a look at doxygen
doxygen can do this and a lot more.