rornoanparn

Untitled

Feb 26th, 2020
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.09 KB | None | 0 0
  1. void insertAfter(List &L, address Prec, address P) {
  2.     next(P) = next(Prec);
  3.     next(Prec) = P;
  4. }
Advertisement
Add Comment
Please, Sign In to add comment