Search Results

0
votes

Rationale behind return 0 as default value in C/C++

Besides all the fine points made by previous posters, it also cleans up the code considerably when a function returns 0 on success. Consider: if ( somefunc() ) { // handl …
1
vote

How to use libapt (or libept) in debian-like system to list packages and get their infos?

Take a look at how apt-cache(8) is implemented. Obtaining the source with apt is easy: # apt-get source apt In the source file cmdline/apt-cache.cc th …