stumped
stumped

Reputation: 3293

Where are these system header files?

The files are float.h and limits.h. Are they somewhere in Xcode? When directions like these are given: /Developer/SDKs/<insert SDK here>/usr/include do I type them in somewhere or follow the directions one-by-one like a map?

Upvotes: 2

Views: 269

Answers (1)

Avi Cohen
Avi Cohen

Reputation: 3414

Do this:

  • Write CHAR_MIN inside a file that you opened using X-Code.

  • Right-click on CHAR_MIN and select Jump to Definition

  • Right-click on an empty space inside limits.h and select Show in Finder

You can do this to find the location of any file of this kind.

In my system limits.h is inside the X-Code folder.

Upvotes: 3

Related Questions