Changes between Version 18 and Version 19 of Submitting/C
- Timestamp:
- 06/11/14 10:14:32 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Submitting/C
v18 v19 74 74 In general, headers should be included in the order: 75 75 76 1. Core system headers ( stdio.h, ctype.h, ...)76 1. Core system headers (`stdio.h`, `ctype.h`, ...) 77 77 2. Headers for non-core system components (X11, libraries). 78 78 3. Headers for core systems of the package being compiled (`grass/gis.h`, `grass/glocale.h`, ...) 79 79 4. Headers for the specific library/program being compiled (`geodesic.h`, ...) 80 80 81 Each class of header has an obligation to be compatible with those 82 above it in the list, but not those below it. 81 Each class of header has an obligation to be compatible with those above it in the list, but not those below it. 83 82 84 83