ASDV-Cpp/Assignments/pointers/pointers1.h
2024-03-09 23:17:44 -06:00

8 lines
94 B
C

#ifndef POINTERS1_H
#define POINTERS1_H
extern "C" {
int * dupParameter(int x);
}
#endif