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
  • The point is that a sane implementation wouldn't deliberately make life difficult by failing to recognise '/' in path names on DOS/Win.

    That particular accomplishment is a trivial NOP anyway, because at the system call level, neither DOS nor Windows cares whether you spell paths with '/' or '\'. They're totally interchangeable.

Reply
  • The point is that a sane implementation wouldn't deliberately make life difficult by failing to recognise '/' in path names on DOS/Win.

    That particular accomplishment is a trivial NOP anyway, because at the system call level, neither DOS nor Windows cares whether you spell paths with '/' or '\'. They're totally interchangeable.

Children
No data