The documentation Browser of Xcode is not aware of malloc. I want to read the documentation of these functions but can’t find it. Where to look?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In Xcode 4, when you search the documentation browser for
malloc, you will see a result under “System Guides” called “iOS Manual Pages”. This links to manpages for various BSD functions, includingmalloc.Honestly, though, I would just go over to Terminal and type in
man malloc, as the iOS environment is close enough to Darwin that it should rarely, if ever, make any difference to use the Darwin manpages.