This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

String Functions with CodeComposer



Hi,

What strings functions are included with the TI Code Composer compiler? Is there any documentation?

Thanks

 

  • strings functions are not included in any compiler itself. string functions are simply code, same as what you write, and the compiler does not care whether there are or not.

    If there are any, they are included in a library which may come (or not) with the compiler. If so, the header files you installed with the compiler will tell you (and the compiler) which functions are available.

    You do not tell about which version of CC you're talking about and whether CCS or CCE. While I don't know any of them, it may very well be that there are more or less significant diffferences between them in this respect.

  • Hi Paul,

    Only standard (ANSI) string functions are included see string.h. MSP430: CCS and CCE have no special string functionality.

    The code of the standard library package is available.

    Regards

    Guenther

     

  • Paul maybe some of these references can answer what you're looking for

    In general:

    • TI does not provide documentation about the standard C libraries. Several references in the form of internet pages and books have already been published about this subject.
    • Similarly, if you are using the C++ STL library and have questions about the API, TI does not provide documentation for that. The file <readme.1st> contains the following references:
    1. The Standard C++ Library: A Tutorial and Reference, Nicolai M. Josuttis, Addison-Wesley, ISBN 0-201-37926-0
    2. The C++ Programming Language (Third or Special Editions), Bjarne Stroustrup, Addison-Wesley, ISBN 0-201-88954-4 or 0-201-70073-5.
    3. Dinkumware's online reference at http://dinkumware.com/manuals/
    4. C++ online reference at http://www.cplusplus.com/

     

    Tom

**Attention** This is a public forum