renaming_identifiers 544 B

123456789
  1. o Code simplifications and refactorings:
  2. - Rename a handful of old identifiers, mostly related to crypto
  3. structures and crypto functions. By convention, our "create an
  4. object" functions are called "type_new()", our "free an object"
  5. functions are called "type_free()", and our types indicate that
  6. they are types only with a final "_t". But a handful of older
  7. types and functions broke these rules, with function names like
  8. "type_create" or "subsystem_op_type", or with type names like
  9. type_env_t.