Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- char * RLEDecompress ( const char * src )
- {
- //ЗДЕСЬ ПИСАТЬ
- }
- int main ( int argc, char * argv [] )
- {
- char * res;
- assert ( ! strcmp (
- (res = RLEDecompress ( "Hello world!" )),
- "Hello world!" ));
- free ( res );
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement