home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------*/
- /* */
- /* LSWAP(X,X) */
- /* */
- /* Switches the values of two long */
- /* integers. */
- /* */
- /*--------------------------------------*/
- void lswap(a,b)
- long a[],b[];
- {
- long h;
- h=a[0];
- a[0]=b[0];
- b[0]=h;
- }