User Tools

Site Tools


programming:c

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
programming:c [2021/04/07 02:14]
nanodano
programming:c [2021/04/15 20:23] (current)
nanodano
Line 26: Line 26:
  
 , ldd, strace, static vs dynamic, linking against built libs with header files, assembly built, C++ built, `extern C` , ldd, strace, static vs dynamic, linking against built libs with header files, assembly built, C++ built, `extern C`
 +specifying include dirs and library dirs
  
 ==== debugging ==== ==== debugging ====
Line 82: Line 83:
  
 ==== working with time, sleep, dates ==== ==== working with time, sleep, dates ====
 +
 +<code c sleep.c>
 +#include <unistd.h>
 +
 +int main(int argc, char **argv) {
 +    sleep(2);
 +    return(0);
 +}
 +</code>
  
 ==== malloc and free ==== ==== malloc and free ====
Line 108: Line 118:
  
 ==== using SQLite ==== ==== using SQLite ====
 +
 +==== Get exif info ====
 +
 +https://libexif.github.io
  
 ==== Embedding Python ==== ==== Embedding Python ====
programming/c.1617761686.txt.gz · Last modified: 2021/04/07 02:14 by nanodano