for example, strrev () function. I know that it is declared in string.h, and I want to find out how it is implemented. so where can i fix the source code?
OS: Windows XP SP3IDE: Pelles C 6.50 RC3
If you just want to see the source in the implementation of the standard C library (albeit widely used), the source for glibc is available. You can clone the git repository:
git clone git://sourceware.org/git/glibc.git
You can also examine the source in the browser. Here, for example, is a library string .
glibc does not include strrev(). However if you google for
strrev()
strrev c
. : http://www.cas.mcmaster.ca/~kahl/SE2S03/2006/C/strrev.c ftp://ftp.ecs.vuw.ac.nz/pub/libs/libstrings/strrev.c.
, . .
Source: https://habr.com/ru/post/1782539/More articles:Make two Java applications in the same LAN aware of each other - javaHow to use the perl module you wrote? - perlIs there a jQuery method that determines if an element is currently animated or not in a logical form? - jqueryДиалоговое окно оповещений с цифровым полем EditText - androidWPF Crop and resize images without losing the original image - wpfUIWebView is very slow - iosproblem with SavePoint in mysql - mysqlspace saving in Mysql table - databaseno debugging symbols found in gdb debugger - cКак отобразить NSPanel/NSWindow в стороне моего приложения? - objective-cAll Articles