/* shmlib.h * * Shared Memory Library function prototypes. * * Copyright (c) 2012 Robert Marmorstein (marmorsteinrm@longwood.edu) Released * under the terms of the GPL, version 2. See LICENSE file for details. * * For questions about the licensing of this software, contact me by mail: * Ruffner 329, Longwood University, 201 High Street, Farmville, VA 23909 */ #ifndef SHMLIB_H #define SHMLIB_H void clean_shm(); char* attach_map(int server, int width, int height); #endif