Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the stat.h there are many symbolic names... (for an example : S_IRWXU). I can able to understand the meaning of R,W,X. But I cannot able to understand the meaning of S_I. Though it is not essential to know the meaning behind this, I am eager to know about this. Someone explain please....

share|improve this question

1 Answer

up vote 1 down vote accepted

I don't believe the prefix has any real meaning. The "S_" part is appropriate for stat, like the "O_" defines for open. Some other people have wondered, e.g. http://www.linuxquestions.org/questions/programming-9/sys-stat-h-what-does-the-letter-i-mean-840115/

share|improve this answer
Thank you Sir for Providing that great Link.Now You have increased my eagerness to Know about that sir. Is really the I means Illegible? Please Help again.. – Muthu Ganapathy Nathan Mar 13 '11 at 16:06
No, that was a joke. There doesn't appear to be an authoritative source for why the I is there. – Mat Mar 13 '11 at 16:20
Thank You sir. – Muthu Ganapathy Nathan Mar 13 '11 at 17:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.