Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 397 Bytes

CONTRIBUTING.md

File metadata and controls

15 lines (12 loc) · 397 Bytes

Conventions

  • declare variables with epicsEnvSet
  • functions calls in the following two forms:
    1. fooBar arg1 arg2
    2. fooBar(arg1, arg2)

No mixes please, keep the code nice.

  • Macros

    • put double quotes (") around macros
    • use UPPERCASE for macros
    • use curly brackets for macros
    • i.e.: "${MY_MIGHTY_MACRO}"
  • Example: epicsEnvSet("DEV", "${SYS}")