mirror of
https://github.com/0intro/wmii
synced 2024-11-23 06:11:21 +03:00
14 lines
213 B
C
14 lines
213 B
C
/*
|
|
* (C)opyright MMIV-MMV Anselm R. Garbe <garbeam at gmail dot com>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
|
|
#include "wmii.h"
|
|
|
|
void swap(void **p1, void **p2)
|
|
{
|
|
void *tmp = *p1;
|
|
*p1 = *p2;
|
|
*p2 = tmp;
|
|
}
|