Example #1
0
 public static int listReverse(this DoubleLinkedList phead)
 {
     throw new NotImplementedException();
 }
Example #2
0
 public static IntPtr listRemoveFromTail(out DoubleLinkedList phead, out DoubleLinkedList ptail)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public static IntPtr listRemoveElement(out DoubleLinkedList phead, DoubleLinkedList elem)
 {
     throw new NotImplementedException();
 }
Example #4
0
 public static int listInsertAfter(out DoubleLinkedList phead, DoubleLinkedList elem, IntPtr data)
 {
     throw new NotImplementedException();
 }
Example #5
0
 public static int listAddToTail(out DoubleLinkedList phead, out DoubleLinkedList ptail, IntPtr data)
 {
     throw new NotImplementedException();
 }
Example #6
0
 public static int listJoin(this DoubleLinkedList phead1, out DoubleLinkedList phead2)
 {
     throw new NotImplementedException();
 }