This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

#include paths

Im new to uvision and programming and im looking at a project that has some headers as,
#include "..\..\..\swim\lpc_types.h". How do i give it the correct path to the file?..how is "..\..\..\" supposed to define a path?, ive only seen headers included like #include lpc_types.h

Parents
  • POSIX is a good example why standards are less relevant than user expectations.

    There's no sane fix for this, the error was using \ as a path delimiter. Because it already was established as the escape character in all computing environments.

    Most C/C++ developers on Windows/.NET I know, also use / as a path delimiter in their code.

Reply
  • POSIX is a good example why standards are less relevant than user expectations.

    There's no sane fix for this, the error was using \ as a path delimiter. Because it already was established as the escape character in all computing environments.

    Most C/C++ developers on Windows/.NET I know, also use / as a path delimiter in their code.

Children