3

As C11 introduced some new functions like

char *gets_s(char *str, rsize_t n);

how can I find these functions's man pages on Ubuntu 12.04?

Deduplicator
  • 44,692
  • 7
  • 66
  • 118
likern
  • 3,744
  • 5
  • 36
  • 47
  • 2
    you need to check to see if 12.04 supports a version of GCC that supports those functions first. Then worry about the man pages. – Mgetz Jul 26 '13 at 13:06
  • 1
    Yes, I have installed gcc 4.8 which should at least partially support C11 standard. – likern Jul 26 '13 at 13:11
  • What man pages are you looking for? Most of the real changes in C11 are language feature and only a few functions are added or undergo changes. And for these the text of the standard should tell you enough of what they are doing, no? – Jens Gustedt Jul 26 '13 at 14:19
  • Possible duplicate of [Is support of Annex K in C11 required for a conforming implementation?](http://stackoverflow.com/questions/16700541/is-support-of-annex-k-in-c11-required-for-a-conforming-implementation) – Deduplicator Dec 26 '15 at 18:19

1 Answers1

1

You get the C11 Annex K functions, like this one, only with:

rurban
  • 4,025
  • 24
  • 27