fix up some comments

This commit is contained in:
Axel Kohlmeyer
2020-09-12 14:26:34 -04:00
parent bc850bcd97
commit 93a0d4c096
34 changed files with 50 additions and 50 deletions

View File

@ -60,7 +60,7 @@ namespace LAMMPS_NS {
* \param s buffer for storing the result of fgets()
* \param size size of buffer s (max number of bytes read by fgets())
* \param fp file pointer used by fgets()
* \param filename file name associated with fp (may be nullptr; then LAMMPS will try to detect)
* \param filename file name associated with fp (may be a null pointer; then LAMMPS will try to detect)
* \param error pointer to Error class instance (for abort) */
void sfgets(const char *srcname, int srcline, char *s, int size,
@ -75,7 +75,7 @@ namespace LAMMPS_NS {
* \param size size of data elements read by fread()
* \param num number of data elements read by fread()
* \param fp file pointer used by fread()
* \param filename file name associated with fp (may be nullptr; then LAMMPS will try to detect)
* \param filename file name associated with fp (may be a null pointer; then LAMMPS will try to detect)
* \param error pointer to Error class instance (for abort) */
void sfread(const char *srcname, int srcline, void *s, size_t size,